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.

Files changed (85) hide show
  1. data/.gitignore +1 -0
  2. data/.travis.yml +0 -2
  3. data/Appraisals +2 -2
  4. data/CONTRIBUTING.md +10 -19
  5. data/Gemfile +1 -1
  6. data/Gemfile.lock +81 -82
  7. data/NEWS.md +17 -4
  8. data/README.md +176 -113
  9. data/app/controllers/clearance/passwords_controller.rb +44 -31
  10. data/app/controllers/clearance/sessions_controller.rb +11 -10
  11. data/app/controllers/clearance/users_controller.rb +8 -12
  12. data/app/mailers/clearance_mailer.rb +4 -5
  13. data/app/views/clearance_mailer/change_password.html.erb +2 -4
  14. data/app/views/layouts/application.html.erb +7 -5
  15. data/app/views/passwords/edit.html.erb +8 -7
  16. data/app/views/passwords/new.html.erb +6 -5
  17. data/app/views/sessions/_form.html.erb +7 -5
  18. data/app/views/sessions/new.html.erb +3 -2
  19. data/app/views/users/_form.html.erb +4 -3
  20. data/clearance.gemspec +29 -27
  21. data/config/routes.rb +10 -13
  22. data/db/migrate/20110111224543_create_clearance_users.rb +18 -0
  23. data/db/schema.rb +4 -5
  24. data/features/engine/visitor_resets_password.feature +0 -7
  25. data/features/engine/visitor_signs_in.feature +7 -0
  26. data/features/engine/visitor_signs_up.feature +2 -2
  27. data/features/integration.feature +0 -1
  28. data/features/integration_with_test_unit.feature +43 -0
  29. data/features/step_definitions/configuration_steps.rb +8 -15
  30. data/features/step_definitions/engine/clearance_steps.rb +38 -38
  31. data/features/support/clearance.rb +1 -1
  32. data/features/support/env.rb +4 -21
  33. data/gemfiles/{3.0.12.gemfile → 3.0.15.gemfile} +1 -1
  34. data/gemfiles/{3.0.12.gemfile.lock → 3.0.15.gemfile.lock} +75 -76
  35. data/gemfiles/{3.2.3.gemfile → 3.1.6.gemfile} +1 -1
  36. data/gemfiles/{3.1.4.gemfile.lock → 3.1.6.gemfile.lock} +79 -80
  37. data/gemfiles/{3.1.4.gemfile → 3.2.6.gemfile} +1 -1
  38. data/gemfiles/{3.2.3.gemfile.lock → 3.2.6.gemfile.lock} +80 -81
  39. data/lib/clearance.rb +1 -0
  40. data/lib/clearance/authentication.rb +37 -69
  41. data/lib/clearance/configuration.rb +3 -18
  42. data/lib/clearance/constraints.rb +2 -0
  43. data/lib/clearance/constraints/signed_in.rb +28 -0
  44. data/lib/clearance/constraints/signed_out.rb +9 -0
  45. data/lib/clearance/engine.rb +4 -4
  46. data/lib/clearance/password_strategies.rb +5 -1
  47. data/lib/clearance/password_strategies/bcrypt.rb +27 -0
  48. data/lib/clearance/password_strategies/bcrypt_migration_from_sha1.rb +52 -0
  49. data/lib/clearance/password_strategies/blowfish.rb +11 -15
  50. data/lib/clearance/password_strategies/fake.rb +23 -0
  51. data/lib/clearance/password_strategies/sha1.rb +15 -21
  52. data/lib/clearance/session.rb +28 -20
  53. data/lib/clearance/testing.rb +8 -3
  54. data/lib/clearance/testing/assertion_error.rb +2 -7
  55. data/lib/clearance/testing/deny_access_matcher.rb +27 -32
  56. data/lib/clearance/testing/helpers.rb +7 -8
  57. data/lib/clearance/user.rb +26 -92
  58. data/lib/clearance/version.rb +1 -1
  59. data/lib/generators/clearance/install/templates/db/migrate/upgrade_clearance_to_diesel.rb +24 -26
  60. data/spec/clearance/constraints/signed_in_spec.rb +51 -0
  61. data/spec/clearance/constraints/signed_out_spec.rb +15 -0
  62. data/spec/clearance/rack_session_spec.rb +8 -7
  63. data/spec/clearance/session_spec.rb +28 -27
  64. data/spec/configuration_spec.rb +7 -6
  65. data/spec/controllers/denies_controller_spec.rb +11 -10
  66. data/spec/controllers/flashes_controller_spec.rb +5 -5
  67. data/spec/controllers/forgeries_controller_spec.rb +9 -9
  68. data/spec/controllers/passwords_controller_spec.rb +42 -55
  69. data/spec/controllers/sessions_controller_spec.rb +26 -33
  70. data/spec/controllers/users_controller_spec.rb +16 -14
  71. data/spec/factories.rb +1 -3
  72. data/spec/mailers/clearance_mailer_spec.rb +4 -4
  73. data/spec/models/bcrypt_migration_from_sha1_spec.rb +71 -0
  74. data/spec/models/bcrypt_spec.rb +40 -0
  75. data/spec/models/blowfish_spec.rb +14 -13
  76. data/spec/models/{clearance_user_spec.rb → password_strategies_spec.rb} +5 -5
  77. data/spec/models/sha1_spec.rb +18 -13
  78. data/spec/models/user_spec.rb +58 -73
  79. data/spec/spec_helper.rb +5 -6
  80. data/spec/support/clearance.rb +0 -4
  81. data/spec/support/cookies.rb +25 -27
  82. data/spec/support/request_with_remember_token.rb +19 -0
  83. metadata +95 -90
  84. data/db/migrate/20110111224543_create_diesel_clearance_users.rb +0 -19
  85. data/init.rb +0 -1
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "http://rubygems.org"
4
4
 
5
- gem "rails", "3.2.3"
5
+ gem "rails", "3.1.6"
6
6
 
7
7
  gemspec :path=>"../"
@@ -1,42 +1,43 @@
1
1
  PATH
2
- remote: /home/mike/clearance
2
+ remote: /home/mike/thoughtbot/clearance
3
3
  specs:
4
- clearance (0.16.2)
5
- diesel (~> 0.1.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.4)
12
- actionpack (= 3.1.4)
13
- mail (~> 2.3.0)
14
- actionpack (3.1.4)
15
- activemodel (= 3.1.4)
16
- activesupport (= 3.1.4)
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.1)
22
+ rack-cache (~> 1.2)
22
23
  rack-mount (~> 0.8.2)
23
24
  rack-test (~> 0.6.1)
24
- sprockets (~> 2.0.3)
25
- activemodel (3.1.4)
26
- activesupport (= 3.1.4)
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.4)
30
- activemodel (= 3.1.4)
31
- activesupport (= 3.1.4)
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.4)
35
- activemodel (= 3.1.4)
36
- activesupport (= 3.1.4)
37
- activesupport (3.1.4)
38
- multi_json (~> 1.0)
39
- addressable (2.2.7)
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.1)
60
- ffi (~> 1.0.6)
61
- cucumber (1.1.9)
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.2)
64
- gherkin (~> 2.9.0)
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.7.2)
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.1.1)
77
+ factory_girl (3.5.0)
77
78
  activesupport (>= 3.0.0)
78
- factory_girl_rails (3.1.0)
79
- factory_girl (~> 3.1.0)
79
+ factory_girl_rails (3.5.0)
80
+ factory_girl (~> 3.5.0)
80
81
  railties (>= 3.0.0)
81
- ffi (1.0.11)
82
- gherkin (2.9.3)
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.6.6)
87
- launchy (2.1.0)
88
- addressable (~> 2.2.6)
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.18)
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.2)
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.4)
110
- actionmailer (= 3.1.4)
111
- actionpack (= 3.1.4)
112
- activerecord (= 3.1.4)
113
- activeresource (= 3.1.4)
114
- activesupport (= 3.1.4)
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.4)
117
- railties (3.1.4)
118
- actionpack (= 3.1.4)
119
- activesupport (= 3.1.4)
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.9.0)
128
- rspec-core (~> 2.9.0)
129
- rspec-expectations (~> 2.9.0)
130
- rspec-mocks (~> 2.9.0)
131
- rspec-core (2.9.0)
132
- rspec-expectations (2.9.1)
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.9.0)
135
- rspec-rails (2.9.0)
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.9.0)
140
- rubyzip (0.9.6.1)
141
- selenium-webdriver (2.20.0)
140
+ rspec (~> 2.11.0)
141
+ rubyzip (0.9.9)
142
+ selenium-webdriver (2.25.0)
142
143
  childprocess (>= 0.2.5)
143
- ffi (~> 1.0)
144
+ libwebsocket (~> 0.1.3)
144
145
  multi_json (~> 1.0)
145
146
  rubyzip
146
- shoulda-matchers (1.1.0)
147
+ shoulda-matchers (1.2.0)
147
148
  activesupport (>= 3.0.0)
148
- sprockets (2.0.3)
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.5)
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.32)
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 (~> 0.4.1)
169
- aruba (~> 0.4.11)
170
- bourne (~> 1.1.2)
171
- bundler (~> 1.1.0)
172
- capybara (~> 1.1.2)
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 (~> 1.1.1)
175
- database_cleaner
176
- factory_girl_rails (~> 3.1.0)
177
- launchy
178
- rails (= 3.1.4)
179
- rspec-rails (~> 2.9.0)
180
- shoulda-matchers (~> 1.1.0)
181
- sqlite3
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)
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "http://rubygems.org"
4
4
 
5
- gem "rails", "3.1.4"
5
+ gem "rails", "3.2.6"
6
6
 
7
7
  gemspec :path=>"../"
@@ -1,41 +1,42 @@
1
1
  PATH
2
- remote: /home/mike/clearance
2
+ remote: /home/mike/thoughtbot/clearance
3
3
  specs:
4
- clearance (0.16.2)
5
- diesel (~> 0.1.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.3)
12
- actionpack (= 3.2.3)
12
+ actionmailer (3.2.6)
13
+ actionpack (= 3.2.6)
13
14
  mail (~> 2.4.4)
14
- actionpack (3.2.3)
15
- activemodel (= 3.2.3)
16
- activesupport (= 3.2.3)
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.2)
24
- activemodel (3.2.3)
25
- activesupport (= 3.2.3)
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.3)
28
- activemodel (= 3.2.3)
29
- activesupport (= 3.2.3)
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.3)
33
- activemodel (= 3.2.3)
34
- activesupport (= 3.2.3)
35
- activesupport (3.2.3)
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.2.7)
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.1)
59
- ffi (~> 1.0.6)
60
- cucumber (1.1.9)
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.2)
63
- gherkin (~> 2.9.0)
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.7.2)
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.1.1)
76
+ factory_girl (3.5.0)
76
77
  activesupport (>= 3.0.0)
77
- factory_girl_rails (3.1.0)
78
- factory_girl (~> 3.1.0)
78
+ factory_girl_rails (3.5.0)
79
+ factory_girl (~> 3.5.0)
79
80
  railties (>= 3.0.0)
80
- ffi (1.0.11)
81
- gherkin (2.9.3)
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.3)
86
- json (1.6.6)
87
- launchy (2.1.0)
88
- addressable (~> 2.2.6)
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.18)
95
+ mime-types (1.19)
95
96
  mocha (0.10.5)
96
97
  metaclass (~> 0.0.1)
97
- multi_json (1.2.0)
98
- nokogiri (1.5.2)
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.3)
108
- actionmailer (= 3.2.3)
109
- actionpack (= 3.2.3)
110
- activerecord (= 3.2.3)
111
- activeresource (= 3.2.3)
112
- activesupport (= 3.2.3)
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.3)
115
- railties (3.2.3)
116
- actionpack (= 3.2.3)
117
- activesupport (= 3.2.3)
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 (~> 0.14.6)
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.9.0)
126
- rspec-core (~> 2.9.0)
127
- rspec-expectations (~> 2.9.0)
128
- rspec-mocks (~> 2.9.0)
129
- rspec-core (2.9.0)
130
- rspec-expectations (2.9.1)
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.9.0)
133
- rspec-rails (2.9.0)
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.9.0)
138
- rubyzip (0.9.6.1)
139
- selenium-webdriver (2.20.0)
138
+ rspec (~> 2.11.0)
139
+ rubyzip (0.9.9)
140
+ selenium-webdriver (2.25.0)
140
141
  childprocess (>= 0.2.5)
141
- ffi (~> 1.0)
142
+ libwebsocket (~> 0.1.3)
142
143
  multi_json (~> 1.0)
143
144
  rubyzip
144
- shoulda-matchers (1.1.0)
145
+ shoulda-matchers (1.2.0)
145
146
  activesupport (>= 3.0.0)
146
- sprockets (2.1.2)
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.5)
151
- term-ansicolor (1.0.7)
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.32)
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 (~> 0.4.1)
167
- aruba (~> 0.4.11)
168
- bourne (~> 1.1.2)
169
- bundler (~> 1.1.0)
170
- capybara (~> 1.1.2)
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 (~> 1.1.1)
173
- database_cleaner
174
- factory_girl_rails (~> 3.1.0)
175
- launchy
176
- rails (= 3.2.3)
177
- rspec-rails (~> 2.9.0)
178
- shoulda-matchers (~> 1.1.0)
179
- sqlite3
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)