clearance 0.16.3 → 1.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of clearance might be problematic. Click here for more details.
- data/.gitignore +1 -0
- data/.travis.yml +0 -2
- data/Appraisals +2 -2
- data/CONTRIBUTING.md +10 -19
- data/Gemfile +1 -1
- data/Gemfile.lock +81 -82
- data/NEWS.md +17 -4
- data/README.md +176 -113
- data/app/controllers/clearance/passwords_controller.rb +44 -31
- data/app/controllers/clearance/sessions_controller.rb +11 -10
- data/app/controllers/clearance/users_controller.rb +8 -12
- data/app/mailers/clearance_mailer.rb +4 -5
- data/app/views/clearance_mailer/change_password.html.erb +2 -4
- data/app/views/layouts/application.html.erb +7 -5
- data/app/views/passwords/edit.html.erb +8 -7
- data/app/views/passwords/new.html.erb +6 -5
- data/app/views/sessions/_form.html.erb +7 -5
- data/app/views/sessions/new.html.erb +3 -2
- data/app/views/users/_form.html.erb +4 -3
- data/clearance.gemspec +29 -27
- data/config/routes.rb +10 -13
- data/db/migrate/20110111224543_create_clearance_users.rb +18 -0
- data/db/schema.rb +4 -5
- data/features/engine/visitor_resets_password.feature +0 -7
- data/features/engine/visitor_signs_in.feature +7 -0
- data/features/engine/visitor_signs_up.feature +2 -2
- data/features/integration.feature +0 -1
- data/features/integration_with_test_unit.feature +43 -0
- data/features/step_definitions/configuration_steps.rb +8 -15
- data/features/step_definitions/engine/clearance_steps.rb +38 -38
- data/features/support/clearance.rb +1 -1
- data/features/support/env.rb +4 -21
- data/gemfiles/{3.0.12.gemfile → 3.0.15.gemfile} +1 -1
- data/gemfiles/{3.0.12.gemfile.lock → 3.0.15.gemfile.lock} +75 -76
- data/gemfiles/{3.2.3.gemfile → 3.1.6.gemfile} +1 -1
- data/gemfiles/{3.1.4.gemfile.lock → 3.1.6.gemfile.lock} +79 -80
- data/gemfiles/{3.1.4.gemfile → 3.2.6.gemfile} +1 -1
- data/gemfiles/{3.2.3.gemfile.lock → 3.2.6.gemfile.lock} +80 -81
- data/lib/clearance.rb +1 -0
- data/lib/clearance/authentication.rb +37 -69
- data/lib/clearance/configuration.rb +3 -18
- data/lib/clearance/constraints.rb +2 -0
- data/lib/clearance/constraints/signed_in.rb +28 -0
- data/lib/clearance/constraints/signed_out.rb +9 -0
- data/lib/clearance/engine.rb +4 -4
- data/lib/clearance/password_strategies.rb +5 -1
- data/lib/clearance/password_strategies/bcrypt.rb +27 -0
- data/lib/clearance/password_strategies/bcrypt_migration_from_sha1.rb +52 -0
- data/lib/clearance/password_strategies/blowfish.rb +11 -15
- data/lib/clearance/password_strategies/fake.rb +23 -0
- data/lib/clearance/password_strategies/sha1.rb +15 -21
- data/lib/clearance/session.rb +28 -20
- data/lib/clearance/testing.rb +8 -3
- data/lib/clearance/testing/assertion_error.rb +2 -7
- data/lib/clearance/testing/deny_access_matcher.rb +27 -32
- data/lib/clearance/testing/helpers.rb +7 -8
- data/lib/clearance/user.rb +26 -92
- data/lib/clearance/version.rb +1 -1
- data/lib/generators/clearance/install/templates/db/migrate/upgrade_clearance_to_diesel.rb +24 -26
- data/spec/clearance/constraints/signed_in_spec.rb +51 -0
- data/spec/clearance/constraints/signed_out_spec.rb +15 -0
- data/spec/clearance/rack_session_spec.rb +8 -7
- data/spec/clearance/session_spec.rb +28 -27
- data/spec/configuration_spec.rb +7 -6
- data/spec/controllers/denies_controller_spec.rb +11 -10
- data/spec/controllers/flashes_controller_spec.rb +5 -5
- data/spec/controllers/forgeries_controller_spec.rb +9 -9
- data/spec/controllers/passwords_controller_spec.rb +42 -55
- data/spec/controllers/sessions_controller_spec.rb +26 -33
- data/spec/controllers/users_controller_spec.rb +16 -14
- data/spec/factories.rb +1 -3
- data/spec/mailers/clearance_mailer_spec.rb +4 -4
- data/spec/models/bcrypt_migration_from_sha1_spec.rb +71 -0
- data/spec/models/bcrypt_spec.rb +40 -0
- data/spec/models/blowfish_spec.rb +14 -13
- data/spec/models/{clearance_user_spec.rb → password_strategies_spec.rb} +5 -5
- data/spec/models/sha1_spec.rb +18 -13
- data/spec/models/user_spec.rb +58 -73
- data/spec/spec_helper.rb +5 -6
- data/spec/support/clearance.rb +0 -4
- data/spec/support/cookies.rb +25 -27
- data/spec/support/request_with_remember_token.rb +19 -0
- metadata +95 -90
- data/db/migrate/20110111224543_create_diesel_clearance_users.rb +0 -19
- data/init.rb +0 -1
@@ -1,42 +1,43 @@
|
|
1
1
|
PATH
|
2
|
-
remote: /home/mike/clearance
|
2
|
+
remote: /home/mike/thoughtbot/clearance
|
3
3
|
specs:
|
4
|
-
clearance (0.
|
5
|
-
|
4
|
+
clearance (1.0.0.rc1)
|
5
|
+
bcrypt-ruby
|
6
|
+
diesel (= 0.1.5)
|
6
7
|
rails (>= 3.0)
|
7
8
|
|
8
9
|
GEM
|
9
10
|
remote: http://rubygems.org/
|
10
11
|
specs:
|
11
|
-
actionmailer (3.1.
|
12
|
-
actionpack (= 3.1.
|
13
|
-
mail (~> 2.3.
|
14
|
-
actionpack (3.1.
|
15
|
-
activemodel (= 3.1.
|
16
|
-
activesupport (= 3.1.
|
12
|
+
actionmailer (3.1.6)
|
13
|
+
actionpack (= 3.1.6)
|
14
|
+
mail (~> 2.3.3)
|
15
|
+
actionpack (3.1.6)
|
16
|
+
activemodel (= 3.1.6)
|
17
|
+
activesupport (= 3.1.6)
|
17
18
|
builder (~> 3.0.0)
|
18
19
|
erubis (~> 2.7.0)
|
19
20
|
i18n (~> 0.6)
|
20
21
|
rack (~> 1.3.6)
|
21
|
-
rack-cache (~> 1.
|
22
|
+
rack-cache (~> 1.2)
|
22
23
|
rack-mount (~> 0.8.2)
|
23
24
|
rack-test (~> 0.6.1)
|
24
|
-
sprockets (~> 2.0.
|
25
|
-
activemodel (3.1.
|
26
|
-
activesupport (= 3.1.
|
25
|
+
sprockets (~> 2.0.4)
|
26
|
+
activemodel (3.1.6)
|
27
|
+
activesupport (= 3.1.6)
|
27
28
|
builder (~> 3.0.0)
|
28
29
|
i18n (~> 0.6)
|
29
|
-
activerecord (3.1.
|
30
|
-
activemodel (= 3.1.
|
31
|
-
activesupport (= 3.1.
|
30
|
+
activerecord (3.1.6)
|
31
|
+
activemodel (= 3.1.6)
|
32
|
+
activesupport (= 3.1.6)
|
32
33
|
arel (~> 2.2.3)
|
33
34
|
tzinfo (~> 0.3.29)
|
34
|
-
activeresource (3.1.
|
35
|
-
activemodel (= 3.1.
|
36
|
-
activesupport (= 3.1.
|
37
|
-
activesupport (3.1.
|
38
|
-
multi_json (
|
39
|
-
addressable (2.
|
35
|
+
activeresource (3.1.6)
|
36
|
+
activemodel (= 3.1.6)
|
37
|
+
activesupport (= 3.1.6)
|
38
|
+
activesupport (3.1.6)
|
39
|
+
multi_json (>= 1.0, < 1.3)
|
40
|
+
addressable (2.3.1)
|
40
41
|
appraisal (0.4.1)
|
41
42
|
bundler
|
42
43
|
rake
|
@@ -46,6 +47,7 @@ GEM
|
|
46
47
|
cucumber (>= 1.1.1)
|
47
48
|
ffi (>= 1.0.11)
|
48
49
|
rspec (>= 2.7.0)
|
50
|
+
bcrypt-ruby (3.0.1)
|
49
51
|
bourne (1.1.2)
|
50
52
|
mocha (= 0.10.5)
|
51
53
|
builder (3.0.0)
|
@@ -56,46 +58,45 @@ GEM
|
|
56
58
|
rack-test (>= 0.5.4)
|
57
59
|
selenium-webdriver (~> 2.0)
|
58
60
|
xpath (~> 0.1.4)
|
59
|
-
childprocess (0.3.
|
60
|
-
ffi (~> 1.0.6)
|
61
|
-
cucumber (1.1
|
61
|
+
childprocess (0.3.4)
|
62
|
+
ffi (~> 1.0, >= 1.0.6)
|
63
|
+
cucumber (1.2.1)
|
62
64
|
builder (>= 2.1.2)
|
63
|
-
diff-lcs (>= 1.1.
|
64
|
-
gherkin (~> 2.
|
65
|
+
diff-lcs (>= 1.1.3)
|
66
|
+
gherkin (~> 2.11.0)
|
65
67
|
json (>= 1.4.6)
|
66
|
-
term-ansicolor (>= 1.0.6)
|
67
68
|
cucumber-rails (1.1.1)
|
68
69
|
capybara (>= 1.1.1)
|
69
70
|
cucumber (>= 1.1.0)
|
70
71
|
nokogiri (>= 1.5.0)
|
71
|
-
database_cleaner (0.
|
72
|
+
database_cleaner (0.8.0)
|
72
73
|
diesel (0.1.5)
|
73
74
|
railties
|
74
75
|
diff-lcs (1.1.3)
|
75
76
|
erubis (2.7.0)
|
76
|
-
factory_girl (3.
|
77
|
+
factory_girl (3.5.0)
|
77
78
|
activesupport (>= 3.0.0)
|
78
|
-
factory_girl_rails (3.
|
79
|
-
factory_girl (~> 3.
|
79
|
+
factory_girl_rails (3.5.0)
|
80
|
+
factory_girl (~> 3.5.0)
|
80
81
|
railties (>= 3.0.0)
|
81
|
-
ffi (1.0
|
82
|
-
gherkin (2.
|
82
|
+
ffi (1.1.0)
|
83
|
+
gherkin (2.11.1)
|
83
84
|
json (>= 1.4.6)
|
84
85
|
hike (1.2.1)
|
85
86
|
i18n (0.6.0)
|
86
|
-
json (1.
|
87
|
-
|
88
|
-
addressable
|
87
|
+
json (1.7.3)
|
88
|
+
libwebsocket (0.1.4)
|
89
|
+
addressable
|
89
90
|
mail (2.3.3)
|
90
91
|
i18n (>= 0.4.0)
|
91
92
|
mime-types (~> 1.16)
|
92
93
|
treetop (~> 1.4.8)
|
93
94
|
metaclass (0.0.1)
|
94
|
-
mime-types (1.
|
95
|
+
mime-types (1.19)
|
95
96
|
mocha (0.10.5)
|
96
97
|
metaclass (~> 0.0.1)
|
97
98
|
multi_json (1.2.0)
|
98
|
-
nokogiri (1.5.
|
99
|
+
nokogiri (1.5.5)
|
99
100
|
polyglot (0.3.3)
|
100
101
|
rack (1.3.6)
|
101
102
|
rack-cache (1.2)
|
@@ -106,17 +107,17 @@ GEM
|
|
106
107
|
rack
|
107
108
|
rack-test (0.6.1)
|
108
109
|
rack (>= 1.0)
|
109
|
-
rails (3.1.
|
110
|
-
actionmailer (= 3.1.
|
111
|
-
actionpack (= 3.1.
|
112
|
-
activerecord (= 3.1.
|
113
|
-
activeresource (= 3.1.
|
114
|
-
activesupport (= 3.1.
|
110
|
+
rails (3.1.6)
|
111
|
+
actionmailer (= 3.1.6)
|
112
|
+
actionpack (= 3.1.6)
|
113
|
+
activerecord (= 3.1.6)
|
114
|
+
activeresource (= 3.1.6)
|
115
|
+
activesupport (= 3.1.6)
|
115
116
|
bundler (~> 1.0)
|
116
|
-
railties (= 3.1.
|
117
|
-
railties (3.1.
|
118
|
-
actionpack (= 3.1.
|
119
|
-
activesupport (= 3.1.
|
117
|
+
railties (= 3.1.6)
|
118
|
+
railties (3.1.6)
|
119
|
+
actionpack (= 3.1.6)
|
120
|
+
activesupport (= 3.1.6)
|
120
121
|
rack-ssl (~> 1.3.2)
|
121
122
|
rake (>= 0.8.7)
|
122
123
|
rdoc (~> 3.4)
|
@@ -124,40 +125,39 @@ GEM
|
|
124
125
|
rake (0.9.2.2)
|
125
126
|
rdoc (3.12)
|
126
127
|
json (~> 1.4)
|
127
|
-
rspec (2.
|
128
|
-
rspec-core (~> 2.
|
129
|
-
rspec-expectations (~> 2.
|
130
|
-
rspec-mocks (~> 2.
|
131
|
-
rspec-core (2.
|
132
|
-
rspec-expectations (2.
|
128
|
+
rspec (2.11.0)
|
129
|
+
rspec-core (~> 2.11.0)
|
130
|
+
rspec-expectations (~> 2.11.0)
|
131
|
+
rspec-mocks (~> 2.11.0)
|
132
|
+
rspec-core (2.11.1)
|
133
|
+
rspec-expectations (2.11.1)
|
133
134
|
diff-lcs (~> 1.1.3)
|
134
|
-
rspec-mocks (2.
|
135
|
-
rspec-rails (2.
|
135
|
+
rspec-mocks (2.11.1)
|
136
|
+
rspec-rails (2.11.0)
|
136
137
|
actionpack (>= 3.0)
|
137
138
|
activesupport (>= 3.0)
|
138
139
|
railties (>= 3.0)
|
139
|
-
rspec (~> 2.
|
140
|
-
rubyzip (0.9.
|
141
|
-
selenium-webdriver (2.
|
140
|
+
rspec (~> 2.11.0)
|
141
|
+
rubyzip (0.9.9)
|
142
|
+
selenium-webdriver (2.25.0)
|
142
143
|
childprocess (>= 0.2.5)
|
143
|
-
|
144
|
+
libwebsocket (~> 0.1.3)
|
144
145
|
multi_json (~> 1.0)
|
145
146
|
rubyzip
|
146
|
-
shoulda-matchers (1.
|
147
|
+
shoulda-matchers (1.2.0)
|
147
148
|
activesupport (>= 3.0.0)
|
148
|
-
sprockets (2.0.
|
149
|
+
sprockets (2.0.4)
|
149
150
|
hike (~> 1.2)
|
150
151
|
rack (~> 1.0)
|
151
152
|
tilt (~> 1.1, != 1.3.0)
|
152
|
-
sqlite3 (1.3.
|
153
|
-
term-ansicolor (1.0.7)
|
153
|
+
sqlite3 (1.3.6)
|
154
154
|
thor (0.14.6)
|
155
155
|
tilt (1.3.3)
|
156
156
|
timecop (0.3.5)
|
157
157
|
treetop (1.4.10)
|
158
158
|
polyglot
|
159
159
|
polyglot (>= 0.3.1)
|
160
|
-
tzinfo (0.3.
|
160
|
+
tzinfo (0.3.33)
|
161
161
|
xpath (0.1.4)
|
162
162
|
nokogiri (~> 1.3)
|
163
163
|
|
@@ -165,18 +165,17 @@ PLATFORMS
|
|
165
165
|
ruby
|
166
166
|
|
167
167
|
DEPENDENCIES
|
168
|
-
appraisal (
|
169
|
-
aruba (
|
170
|
-
bourne (
|
171
|
-
bundler (
|
172
|
-
capybara (
|
168
|
+
appraisal (= 0.4.1)
|
169
|
+
aruba (= 0.4.11)
|
170
|
+
bourne (= 1.1.2)
|
171
|
+
bundler (= 1.1.3)
|
172
|
+
capybara (= 1.1.2)
|
173
173
|
clearance!
|
174
|
-
cucumber-rails (
|
175
|
-
database_cleaner
|
176
|
-
factory_girl_rails (
|
177
|
-
|
178
|
-
rails (=
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
timecop
|
174
|
+
cucumber-rails (= 1.1.1)
|
175
|
+
database_cleaner (= 0.8.0)
|
176
|
+
factory_girl_rails (= 3.5.0)
|
177
|
+
rails (= 3.1.6)
|
178
|
+
rspec-rails (= 2.11.0)
|
179
|
+
shoulda-matchers (= 1.2.0)
|
180
|
+
sqlite3 (= 1.3.6)
|
181
|
+
timecop (= 0.3.5)
|
@@ -1,41 +1,42 @@
|
|
1
1
|
PATH
|
2
|
-
remote: /home/mike/clearance
|
2
|
+
remote: /home/mike/thoughtbot/clearance
|
3
3
|
specs:
|
4
|
-
clearance (0.
|
5
|
-
|
4
|
+
clearance (1.0.0.rc1)
|
5
|
+
bcrypt-ruby
|
6
|
+
diesel (= 0.1.5)
|
6
7
|
rails (>= 3.0)
|
7
8
|
|
8
9
|
GEM
|
9
10
|
remote: http://rubygems.org/
|
10
11
|
specs:
|
11
|
-
actionmailer (3.2.
|
12
|
-
actionpack (= 3.2.
|
12
|
+
actionmailer (3.2.6)
|
13
|
+
actionpack (= 3.2.6)
|
13
14
|
mail (~> 2.4.4)
|
14
|
-
actionpack (3.2.
|
15
|
-
activemodel (= 3.2.
|
16
|
-
activesupport (= 3.2.
|
15
|
+
actionpack (3.2.6)
|
16
|
+
activemodel (= 3.2.6)
|
17
|
+
activesupport (= 3.2.6)
|
17
18
|
builder (~> 3.0.0)
|
18
19
|
erubis (~> 2.7.0)
|
19
20
|
journey (~> 1.0.1)
|
20
21
|
rack (~> 1.4.0)
|
21
22
|
rack-cache (~> 1.2)
|
22
23
|
rack-test (~> 0.6.1)
|
23
|
-
sprockets (~> 2.1.
|
24
|
-
activemodel (3.2.
|
25
|
-
activesupport (= 3.2.
|
24
|
+
sprockets (~> 2.1.3)
|
25
|
+
activemodel (3.2.6)
|
26
|
+
activesupport (= 3.2.6)
|
26
27
|
builder (~> 3.0.0)
|
27
|
-
activerecord (3.2.
|
28
|
-
activemodel (= 3.2.
|
29
|
-
activesupport (= 3.2.
|
28
|
+
activerecord (3.2.6)
|
29
|
+
activemodel (= 3.2.6)
|
30
|
+
activesupport (= 3.2.6)
|
30
31
|
arel (~> 3.0.2)
|
31
32
|
tzinfo (~> 0.3.29)
|
32
|
-
activeresource (3.2.
|
33
|
-
activemodel (= 3.2.
|
34
|
-
activesupport (= 3.2.
|
35
|
-
activesupport (3.2.
|
33
|
+
activeresource (3.2.6)
|
34
|
+
activemodel (= 3.2.6)
|
35
|
+
activesupport (= 3.2.6)
|
36
|
+
activesupport (3.2.6)
|
36
37
|
i18n (~> 0.6)
|
37
38
|
multi_json (~> 1.0)
|
38
|
-
addressable (2.
|
39
|
+
addressable (2.3.1)
|
39
40
|
appraisal (0.4.1)
|
40
41
|
bundler
|
41
42
|
rake
|
@@ -45,6 +46,7 @@ GEM
|
|
45
46
|
cucumber (>= 1.1.1)
|
46
47
|
ffi (>= 1.0.11)
|
47
48
|
rspec (>= 2.7.0)
|
49
|
+
bcrypt-ruby (3.0.1)
|
48
50
|
bourne (1.1.2)
|
49
51
|
mocha (= 0.10.5)
|
50
52
|
builder (3.0.0)
|
@@ -55,47 +57,46 @@ GEM
|
|
55
57
|
rack-test (>= 0.5.4)
|
56
58
|
selenium-webdriver (~> 2.0)
|
57
59
|
xpath (~> 0.1.4)
|
58
|
-
childprocess (0.3.
|
59
|
-
ffi (~> 1.0.6)
|
60
|
-
cucumber (1.1
|
60
|
+
childprocess (0.3.4)
|
61
|
+
ffi (~> 1.0, >= 1.0.6)
|
62
|
+
cucumber (1.2.1)
|
61
63
|
builder (>= 2.1.2)
|
62
|
-
diff-lcs (>= 1.1.
|
63
|
-
gherkin (~> 2.
|
64
|
+
diff-lcs (>= 1.1.3)
|
65
|
+
gherkin (~> 2.11.0)
|
64
66
|
json (>= 1.4.6)
|
65
|
-
term-ansicolor (>= 1.0.6)
|
66
67
|
cucumber-rails (1.1.1)
|
67
68
|
capybara (>= 1.1.1)
|
68
69
|
cucumber (>= 1.1.0)
|
69
70
|
nokogiri (>= 1.5.0)
|
70
|
-
database_cleaner (0.
|
71
|
+
database_cleaner (0.8.0)
|
71
72
|
diesel (0.1.5)
|
72
73
|
railties
|
73
74
|
diff-lcs (1.1.3)
|
74
75
|
erubis (2.7.0)
|
75
|
-
factory_girl (3.
|
76
|
+
factory_girl (3.5.0)
|
76
77
|
activesupport (>= 3.0.0)
|
77
|
-
factory_girl_rails (3.
|
78
|
-
factory_girl (~> 3.
|
78
|
+
factory_girl_rails (3.5.0)
|
79
|
+
factory_girl (~> 3.5.0)
|
79
80
|
railties (>= 3.0.0)
|
80
|
-
ffi (1.0
|
81
|
-
gherkin (2.
|
81
|
+
ffi (1.1.0)
|
82
|
+
gherkin (2.11.1)
|
82
83
|
json (>= 1.4.6)
|
83
84
|
hike (1.2.1)
|
84
85
|
i18n (0.6.0)
|
85
|
-
journey (1.0.
|
86
|
-
json (1.
|
87
|
-
|
88
|
-
addressable
|
86
|
+
journey (1.0.4)
|
87
|
+
json (1.7.3)
|
88
|
+
libwebsocket (0.1.4)
|
89
|
+
addressable
|
89
90
|
mail (2.4.4)
|
90
91
|
i18n (>= 0.4.0)
|
91
92
|
mime-types (~> 1.16)
|
92
93
|
treetop (~> 1.4.8)
|
93
94
|
metaclass (0.0.1)
|
94
|
-
mime-types (1.
|
95
|
+
mime-types (1.19)
|
95
96
|
mocha (0.10.5)
|
96
97
|
metaclass (~> 0.0.1)
|
97
|
-
multi_json (1.
|
98
|
-
nokogiri (1.5.
|
98
|
+
multi_json (1.3.6)
|
99
|
+
nokogiri (1.5.5)
|
99
100
|
polyglot (0.3.3)
|
100
101
|
rack (1.4.1)
|
101
102
|
rack-cache (1.2)
|
@@ -104,58 +105,57 @@ GEM
|
|
104
105
|
rack
|
105
106
|
rack-test (0.6.1)
|
106
107
|
rack (>= 1.0)
|
107
|
-
rails (3.2.
|
108
|
-
actionmailer (= 3.2.
|
109
|
-
actionpack (= 3.2.
|
110
|
-
activerecord (= 3.2.
|
111
|
-
activeresource (= 3.2.
|
112
|
-
activesupport (= 3.2.
|
108
|
+
rails (3.2.6)
|
109
|
+
actionmailer (= 3.2.6)
|
110
|
+
actionpack (= 3.2.6)
|
111
|
+
activerecord (= 3.2.6)
|
112
|
+
activeresource (= 3.2.6)
|
113
|
+
activesupport (= 3.2.6)
|
113
114
|
bundler (~> 1.0)
|
114
|
-
railties (= 3.2.
|
115
|
-
railties (3.2.
|
116
|
-
actionpack (= 3.2.
|
117
|
-
activesupport (= 3.2.
|
115
|
+
railties (= 3.2.6)
|
116
|
+
railties (3.2.6)
|
117
|
+
actionpack (= 3.2.6)
|
118
|
+
activesupport (= 3.2.6)
|
118
119
|
rack-ssl (~> 1.3.2)
|
119
120
|
rake (>= 0.8.7)
|
120
121
|
rdoc (~> 3.4)
|
121
|
-
thor (
|
122
|
+
thor (>= 0.14.6, < 2.0)
|
122
123
|
rake (0.9.2.2)
|
123
124
|
rdoc (3.12)
|
124
125
|
json (~> 1.4)
|
125
|
-
rspec (2.
|
126
|
-
rspec-core (~> 2.
|
127
|
-
rspec-expectations (~> 2.
|
128
|
-
rspec-mocks (~> 2.
|
129
|
-
rspec-core (2.
|
130
|
-
rspec-expectations (2.
|
126
|
+
rspec (2.11.0)
|
127
|
+
rspec-core (~> 2.11.0)
|
128
|
+
rspec-expectations (~> 2.11.0)
|
129
|
+
rspec-mocks (~> 2.11.0)
|
130
|
+
rspec-core (2.11.1)
|
131
|
+
rspec-expectations (2.11.1)
|
131
132
|
diff-lcs (~> 1.1.3)
|
132
|
-
rspec-mocks (2.
|
133
|
-
rspec-rails (2.
|
133
|
+
rspec-mocks (2.11.1)
|
134
|
+
rspec-rails (2.11.0)
|
134
135
|
actionpack (>= 3.0)
|
135
136
|
activesupport (>= 3.0)
|
136
137
|
railties (>= 3.0)
|
137
|
-
rspec (~> 2.
|
138
|
-
rubyzip (0.9.
|
139
|
-
selenium-webdriver (2.
|
138
|
+
rspec (~> 2.11.0)
|
139
|
+
rubyzip (0.9.9)
|
140
|
+
selenium-webdriver (2.25.0)
|
140
141
|
childprocess (>= 0.2.5)
|
141
|
-
|
142
|
+
libwebsocket (~> 0.1.3)
|
142
143
|
multi_json (~> 1.0)
|
143
144
|
rubyzip
|
144
|
-
shoulda-matchers (1.
|
145
|
+
shoulda-matchers (1.2.0)
|
145
146
|
activesupport (>= 3.0.0)
|
146
|
-
sprockets (2.1.
|
147
|
+
sprockets (2.1.3)
|
147
148
|
hike (~> 1.2)
|
148
149
|
rack (~> 1.0)
|
149
150
|
tilt (~> 1.1, != 1.3.0)
|
150
|
-
sqlite3 (1.3.
|
151
|
-
|
152
|
-
thor (0.14.6)
|
151
|
+
sqlite3 (1.3.6)
|
152
|
+
thor (0.15.4)
|
153
153
|
tilt (1.3.3)
|
154
154
|
timecop (0.3.5)
|
155
155
|
treetop (1.4.10)
|
156
156
|
polyglot
|
157
157
|
polyglot (>= 0.3.1)
|
158
|
-
tzinfo (0.3.
|
158
|
+
tzinfo (0.3.33)
|
159
159
|
xpath (0.1.4)
|
160
160
|
nokogiri (~> 1.3)
|
161
161
|
|
@@ -163,18 +163,17 @@ PLATFORMS
|
|
163
163
|
ruby
|
164
164
|
|
165
165
|
DEPENDENCIES
|
166
|
-
appraisal (
|
167
|
-
aruba (
|
168
|
-
bourne (
|
169
|
-
bundler (
|
170
|
-
capybara (
|
166
|
+
appraisal (= 0.4.1)
|
167
|
+
aruba (= 0.4.11)
|
168
|
+
bourne (= 1.1.2)
|
169
|
+
bundler (= 1.1.3)
|
170
|
+
capybara (= 1.1.2)
|
171
171
|
clearance!
|
172
|
-
cucumber-rails (
|
173
|
-
database_cleaner
|
174
|
-
factory_girl_rails (
|
175
|
-
|
176
|
-
rails (=
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
timecop
|
172
|
+
cucumber-rails (= 1.1.1)
|
173
|
+
database_cleaner (= 0.8.0)
|
174
|
+
factory_girl_rails (= 3.5.0)
|
175
|
+
rails (= 3.2.6)
|
176
|
+
rspec-rails (= 2.11.0)
|
177
|
+
shoulda-matchers (= 1.2.0)
|
178
|
+
sqlite3 (= 1.3.6)
|
179
|
+
timecop (= 0.3.5)
|