Description:
moved verification from plug-in to gem
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r326:09b78f1a3065 - - 12 files changed: 10 inserted, 550 deleted
@@ -1,49 +1,50 | |||
|
1 | 1 | source 'https://rubygems.org' |
|
2 | 2 | |
|
3 | 3 | gem 'rails', '3.2.8' |
|
4 | 4 | |
|
5 | 5 | # Bundle edge Rails instead: |
|
6 | 6 | # gem 'rails', :git => 'git://github.com/rails/rails.git' |
|
7 | 7 | |
|
8 | 8 | gem 'mysql2' |
|
9 | 9 | |
|
10 | 10 | # Gems used only for assets and not required |
|
11 | 11 | # in production environments by default. |
|
12 | 12 | group :assets do |
|
13 | 13 | gem 'sass-rails', '~> 3.2.3' |
|
14 | 14 | gem 'coffee-rails', '~> 3.2.1' |
|
15 | 15 | |
|
16 | 16 | # See https://github.com/sstephenson/execjs#readme for more supported runtimes |
|
17 | 17 | # gem 'therubyracer', :platforms => :ruby |
|
18 | 18 | |
|
19 | 19 | gem 'uglifier', '>= 1.0.3' |
|
20 | 20 | end |
|
21 | 21 | |
|
22 | 22 | gem 'prototype-rails' |
|
23 | 23 | |
|
24 | 24 | # To use ActiveModel has_secure_password |
|
25 | 25 | # gem 'bcrypt-ruby', '~> 3.0.0' |
|
26 | 26 | |
|
27 | 27 | # To use Jbuilder templates for JSON |
|
28 | 28 | # gem 'jbuilder' |
|
29 | 29 | |
|
30 | 30 | # Use unicorn as the app server |
|
31 | 31 | # gem 'unicorn' |
|
32 | 32 | |
|
33 | 33 | # Deploy with Capistrano |
|
34 | 34 | # gem 'capistrano' |
|
35 | 35 | |
|
36 | 36 | # To use debugger |
|
37 | 37 | # gem 'debugger' |
|
38 | 38 | |
|
39 | 39 | gem "haml" |
|
40 | 40 | gem "tmail" |
|
41 | 41 | gem "rdiscount" |
|
42 | 42 | gem "test-unit" |
|
43 | 43 | gem 'will_paginate', '~> 3.0.0' |
|
44 | 44 | gem 'dynamic_form' |
|
45 | 45 | gem 'in_place_editing' |
|
46 | + gem 'verification', :git => 'git://github.com/sikachu/verification.git' | |
|
46 | 47 | |
|
47 | 48 | group :test, :development do |
|
48 | 49 | gem "rspec-rails", "~> 2.0" |
|
49 | 50 | end |
@@ -1,139 +1,148 | |||
|
1 | + GIT | |
|
2 | + remote: git://github.com/sikachu/verification.git | |
|
3 | + revision: 344ad2535da3dc9671872628ff9c79d6f59af9da | |
|
4 | + specs: | |
|
5 | + verification (1.0.3) | |
|
6 | + actionpack (>= 3.0.0, < 3.3.0) | |
|
7 | + activesupport (>= 3.0.0, < 3.3.0) | |
|
8 | + | |
|
1 | 9 | GEM |
|
2 | 10 | remote: https://rubygems.org/ |
|
3 | 11 | specs: |
|
4 | 12 | actionmailer (3.2.8) |
|
5 | 13 | actionpack (= 3.2.8) |
|
6 | 14 | mail (~> 2.4.4) |
|
7 | 15 | actionpack (3.2.8) |
|
8 | 16 | activemodel (= 3.2.8) |
|
9 | 17 | activesupport (= 3.2.8) |
|
10 | 18 | builder (~> 3.0.0) |
|
11 | 19 | erubis (~> 2.7.0) |
|
12 | 20 | journey (~> 1.0.4) |
|
13 | 21 | rack (~> 1.4.0) |
|
14 | 22 | rack-cache (~> 1.2) |
|
15 | 23 | rack-test (~> 0.6.1) |
|
16 | 24 | sprockets (~> 2.1.3) |
|
17 | 25 | activemodel (3.2.8) |
|
18 | 26 | activesupport (= 3.2.8) |
|
19 | 27 | builder (~> 3.0.0) |
|
20 | 28 | activerecord (3.2.8) |
|
21 | 29 | activemodel (= 3.2.8) |
|
22 | 30 | activesupport (= 3.2.8) |
|
23 | 31 | arel (~> 3.0.2) |
|
24 | 32 | tzinfo (~> 0.3.29) |
|
25 | 33 | activeresource (3.2.8) |
|
26 | 34 | activemodel (= 3.2.8) |
|
27 | 35 | activesupport (= 3.2.8) |
|
28 | 36 | activesupport (3.2.8) |
|
29 | 37 | i18n (~> 0.6) |
|
30 | 38 | multi_json (~> 1.0) |
|
31 | 39 | arel (3.0.2) |
|
32 | 40 | builder (3.0.3) |
|
33 | 41 | coffee-rails (3.2.2) |
|
34 | 42 | coffee-script (>= 2.2.0) |
|
35 | 43 | railties (~> 3.2.0) |
|
36 | 44 | coffee-script (2.2.0) |
|
37 | 45 | coffee-script-source |
|
38 | 46 | execjs |
|
39 | 47 | coffee-script-source (1.3.3) |
|
40 | 48 | diff-lcs (1.1.3) |
|
41 | 49 | dynamic_form (1.1.4) |
|
42 | 50 | erubis (2.7.0) |
|
43 | 51 | execjs (1.4.0) |
|
44 | 52 | multi_json (~> 1.0) |
|
45 | 53 | haml (3.1.7) |
|
46 | 54 | hike (1.2.1) |
|
47 | 55 | i18n (0.6.1) |
|
48 | 56 | in_place_editing (1.2.0) |
|
49 | 57 | journey (1.0.4) |
|
50 | 58 | json (1.7.5) |
|
51 | 59 | mail (2.4.4) |
|
52 | 60 | i18n (>= 0.4.0) |
|
53 | 61 | mime-types (~> 1.16) |
|
54 | 62 | treetop (~> 1.4.8) |
|
55 | 63 | mime-types (1.19) |
|
56 | 64 | multi_json (1.3.6) |
|
57 | 65 | mysql2 (0.3.11) |
|
58 | 66 | polyglot (0.3.3) |
|
59 | 67 | prototype-rails (3.2.1) |
|
60 | 68 | rails (~> 3.2) |
|
61 | 69 | rack (1.4.1) |
|
62 | 70 | rack-cache (1.2) |
|
63 | 71 | rack (>= 0.4) |
|
64 | 72 | rack-ssl (1.3.2) |
|
65 | 73 | rack |
|
66 | 74 | rack-test (0.6.2) |
|
67 | 75 | rack (>= 1.0) |
|
68 | 76 | rails (3.2.8) |
|
69 | 77 | actionmailer (= 3.2.8) |
|
70 | 78 | actionpack (= 3.2.8) |
|
71 | 79 | activerecord (= 3.2.8) |
|
72 | 80 | activeresource (= 3.2.8) |
|
73 | 81 | activesupport (= 3.2.8) |
|
74 | 82 | bundler (~> 1.0) |
|
75 | 83 | railties (= 3.2.8) |
|
76 | 84 | railties (3.2.8) |
|
77 | 85 | actionpack (= 3.2.8) |
|
78 | 86 | activesupport (= 3.2.8) |
|
79 | 87 | rack-ssl (~> 1.3.2) |
|
80 | 88 | rake (>= 0.8.7) |
|
81 | 89 | rdoc (~> 3.4) |
|
82 | 90 | thor (>= 0.14.6, < 2.0) |
|
83 | 91 | rake (0.9.2.2) |
|
84 | 92 | rdiscount (1.6.8) |
|
85 | 93 | rdoc (3.12) |
|
86 | 94 | json (~> 1.4) |
|
87 | 95 | rspec (2.11.0) |
|
88 | 96 | rspec-core (~> 2.11.0) |
|
89 | 97 | rspec-expectations (~> 2.11.0) |
|
90 | 98 | rspec-mocks (~> 2.11.0) |
|
91 | 99 | rspec-core (2.11.1) |
|
92 | 100 | rspec-expectations (2.11.3) |
|
93 | 101 | diff-lcs (~> 1.1.3) |
|
94 | 102 | rspec-mocks (2.11.3) |
|
95 | 103 | rspec-rails (2.11.0) |
|
96 | 104 | actionpack (>= 3.0) |
|
97 | 105 | activesupport (>= 3.0) |
|
98 | 106 | railties (>= 3.0) |
|
99 | 107 | rspec (~> 2.11.0) |
|
100 | 108 | sass (3.2.1) |
|
101 | 109 | sass-rails (3.2.5) |
|
102 | 110 | railties (~> 3.2.0) |
|
103 | 111 | sass (>= 3.1.10) |
|
104 | 112 | tilt (~> 1.3) |
|
105 | 113 | sprockets (2.1.3) |
|
106 | 114 | hike (~> 1.2) |
|
107 | 115 | rack (~> 1.0) |
|
108 | 116 | tilt (~> 1.1, != 1.3.0) |
|
109 | 117 | test-unit (2.5.2) |
|
110 | 118 | thor (0.16.0) |
|
111 | 119 | tilt (1.3.3) |
|
112 | 120 | tmail (1.2.7.1) |
|
113 | 121 | treetop (1.4.10) |
|
114 | 122 | polyglot |
|
115 | 123 | polyglot (>= 0.3.1) |
|
116 | 124 | tzinfo (0.3.33) |
|
117 | 125 | uglifier (1.3.0) |
|
118 | 126 | execjs (>= 0.3.0) |
|
119 | 127 | multi_json (~> 1.0, >= 1.0.2) |
|
120 | 128 | will_paginate (3.0.3) |
|
121 | 129 | |
|
122 | 130 | PLATFORMS |
|
123 | 131 | ruby |
|
124 | 132 | |
|
125 | 133 | DEPENDENCIES |
|
126 | 134 | coffee-rails (~> 3.2.1) |
|
127 | 135 | dynamic_form |
|
128 | 136 | haml |
|
129 | 137 | in_place_editing |
|
130 | 138 | mysql2 |
|
131 | 139 | prototype-rails |
|
132 | 140 | rails (= 3.2.8) |
|
133 | 141 | rdiscount |
|
134 | 142 | rspec-rails (~> 2.0) |
|
135 | 143 | sass-rails (~> 3.2.3) |
|
136 | 144 | test-unit |
|
137 | 145 | tmail |
|
138 | 146 | uglifier (>= 1.0.3) |
|
147 | + verification! | |
|
139 | 148 | will_paginate (~> 3.0.0) |
deleted file |
deleted file |
deleted file |
deleted file |
deleted file |
deleted file |
deleted file |
deleted file |
deleted file |
deleted file |
You need to be logged in to leave comments.
Login now