clearance 1.8.0 → 1.16.0

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 (107) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -0
  3. data/.travis.yml +25 -6
  4. data/.yardopts +6 -0
  5. data/Appraisals +15 -4
  6. data/CONTRIBUTING.md +4 -1
  7. data/Gemfile +5 -3
  8. data/Gemfile.lock +102 -96
  9. data/NEWS.md +742 -311
  10. data/README.md +217 -339
  11. data/app/controllers/clearance/passwords_controller.rb +35 -21
  12. data/app/controllers/clearance/sessions_controller.rb +17 -4
  13. data/app/controllers/clearance/users_controller.rb +10 -4
  14. data/app/mailers/clearance_mailer.rb +2 -3
  15. data/app/views/clearance_mailer/change_password.html.erb +6 -3
  16. data/app/views/clearance_mailer/change_password.text.erb +5 -0
  17. data/app/views/layouts/application.html.erb +2 -2
  18. data/app/views/passwords/create.html.erb +1 -1
  19. data/app/views/passwords/edit.html.erb +2 -2
  20. data/app/views/passwords/new.html.erb +2 -2
  21. data/app/views/sessions/_form.html.erb +2 -2
  22. data/app/views/sessions/new.html.erb +1 -1
  23. data/app/views/users/new.html.erb +2 -2
  24. data/bin/setup +6 -2
  25. data/config/locales/clearance.en.yml +6 -0
  26. data/db/migrate/20110111224543_create_clearance_users.rb +1 -1
  27. data/gemfiles/{rails3.2.gemfile → rails32.gemfile} +4 -2
  28. data/gemfiles/{rails4.0.gemfile → rails40.gemfile} +6 -3
  29. data/gemfiles/{rails4.1.gemfile → rails41.gemfile} +6 -3
  30. data/gemfiles/{rails4.2.gemfile → rails42.gemfile} +6 -3
  31. data/gemfiles/rails50.gemfile +21 -0
  32. data/lib/clearance/authentication.rb +61 -2
  33. data/lib/clearance/authorization.rb +47 -4
  34. data/lib/clearance/back_door.rb +29 -6
  35. data/lib/clearance/configuration.rb +152 -15
  36. data/lib/clearance/constraints/signed_in.rb +21 -0
  37. data/lib/clearance/constraints/signed_out.rb +12 -0
  38. data/lib/clearance/constraints.rb +12 -0
  39. data/lib/clearance/controller.rb +13 -0
  40. data/lib/clearance/default_sign_in_guard.rb +17 -0
  41. data/lib/clearance/engine.rb +24 -4
  42. data/lib/clearance/password_strategies/bcrypt.rb +16 -21
  43. data/lib/clearance/password_strategies/bcrypt_migration_from_sha1.rb +19 -0
  44. data/lib/clearance/password_strategies/blowfish.rb +17 -0
  45. data/lib/clearance/password_strategies/sha1.rb +17 -0
  46. data/lib/clearance/password_strategies.rb +13 -0
  47. data/lib/clearance/rack_session.rb +13 -0
  48. data/lib/clearance/rspec.rb +15 -4
  49. data/lib/clearance/session.rb +46 -1
  50. data/lib/clearance/session_status.rb +7 -0
  51. data/lib/clearance/sign_in_guard.rb +65 -0
  52. data/lib/clearance/test_unit.rb +3 -3
  53. data/lib/clearance/testing/controller_helpers.rb +44 -0
  54. data/lib/clearance/testing/deny_access_matcher.rb +36 -2
  55. data/lib/clearance/testing/helpers.rb +9 -25
  56. data/lib/clearance/testing/view_helpers.rb +32 -0
  57. data/lib/clearance/token.rb +7 -0
  58. data/lib/clearance/user.rb +182 -4
  59. data/lib/clearance/version.rb +1 -1
  60. data/lib/clearance.rb +2 -0
  61. data/lib/generators/clearance/install/install_generator.rb +24 -5
  62. data/lib/generators/clearance/install/templates/clearance.rb +1 -0
  63. data/lib/generators/clearance/install/templates/db/migrate/add_clearance_to_users.rb +3 -3
  64. data/lib/generators/clearance/install/templates/db/migrate/create_users.rb +2 -2
  65. data/lib/generators/clearance/install/templates/user.rb.erb +3 -0
  66. data/lib/generators/clearance/routes/routes_generator.rb +23 -0
  67. data/lib/generators/clearance/routes/templates/routes.rb +7 -7
  68. data/lib/generators/clearance/specs/templates/features/clearance/user_signs_out_spec.rb.tt +1 -1
  69. data/lib/generators/clearance/specs/templates/features/clearance/visitor_resets_password_spec.rb.tt +12 -2
  70. data/lib/generators/clearance/specs/templates/features/clearance/visitor_signs_in_spec.rb.tt +1 -1
  71. data/lib/generators/clearance/specs/templates/features/clearance/visitor_signs_up_spec.rb.tt +1 -1
  72. data/lib/generators/clearance/specs/templates/features/clearance/visitor_updates_password_spec.rb.tt +1 -1
  73. data/spec/acceptance/clearance_installation_spec.rb +4 -1
  74. data/spec/app_templates/app/models/rails5/user.rb +5 -0
  75. data/spec/app_templates/config/initializers/clearance.rb +2 -0
  76. data/spec/app_templates/testapp/app/controllers/home_controller.rb +5 -1
  77. data/spec/app_templates/testapp/config/initializers/action_mailer.rb +1 -3
  78. data/spec/clearance/back_door_spec.rb +25 -6
  79. data/spec/clearance/controller_spec.rb +11 -0
  80. data/spec/clearance/rack_session_spec.rb +5 -5
  81. data/spec/clearance/session_spec.rb +2 -15
  82. data/spec/clearance/testing/{helpers_spec.rb → controller_helpers_spec.rb} +12 -12
  83. data/spec/clearance/testing/view_helpers_spec.rb +37 -0
  84. data/spec/configuration_spec.rb +94 -86
  85. data/spec/controllers/apis_controller_spec.rb +6 -2
  86. data/spec/controllers/forgeries_controller_spec.rb +6 -1
  87. data/spec/controllers/passwords_controller_spec.rb +17 -16
  88. data/spec/controllers/permissions_controller_spec.rb +13 -3
  89. data/spec/controllers/sessions_controller_spec.rb +4 -4
  90. data/spec/dummy/app/controllers/application_controller.rb +5 -1
  91. data/spec/dummy/application.rb +4 -0
  92. data/spec/generators/clearance/install/install_generator_spec.rb +29 -3
  93. data/spec/generators/clearance/routes/routes_generator_spec.rb +5 -1
  94. data/spec/generators/clearance/views/views_generator_spec.rb +11 -10
  95. data/spec/helpers/helper_helpers_spec.rb +10 -0
  96. data/spec/mailers/clearance_mailer_spec.rb +13 -19
  97. data/spec/password_strategies/bcrypt_migration_from_sha1_spec.rb +6 -0
  98. data/spec/password_strategies/blowfish_spec.rb +6 -0
  99. data/spec/password_strategies/sha1_spec.rb +6 -0
  100. data/spec/requests/csrf_rotation_spec.rb +33 -0
  101. data/spec/spec_helper.rb +11 -2
  102. data/spec/support/generator_spec_helpers.rb +13 -1
  103. data/spec/support/http_method_shim.rb +23 -0
  104. data/spec/user_spec.rb +9 -0
  105. data/spec/views/view_helpers_spec.rb +10 -0
  106. metadata +22 -9
  107. data/lib/generators/clearance/install/templates/user.rb +0 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: df978f0510867a2d80c064924da2b102af823b5e
4
- data.tar.gz: be638b6207733d3a873c344f40dbbe540616805a
3
+ metadata.gz: 4600924513a7c46fd73ebf5028b704bbff640f50
4
+ data.tar.gz: cb14d831486ab789f5a05e57787b3bcf7bd86be3
5
5
  SHA512:
6
- metadata.gz: 4d3edea1ae4ce2ff2e47e6a9c747349a58978642c72b46862c303b6c0510a888cfd58668e881dfdf974369ea05c7b316a74795643c89a26059210f2f20ae8911
7
- data.tar.gz: c31439f8e17dacb54727dd968ff6e840129ceb1e0f3fa6fb9bc99c3f4bf71a2d4bff43d98d9d22e37dba36a38d4d4bebb8e743d6a7a827cf0025e5ddde6e0b1a
6
+ metadata.gz: a3badd570870c53b355ea9bbd915bfc283064fdbd06cc97947bd6b01bf514b2f8fa4395545d4b9487fb8c0cb3eaf0f5e86487abb227cdf36d09ef57d1d104dfa
7
+ data.tar.gz: 61d3af42b4d82470966ad8b0f805ec656e6afb98f4c1ad5c0db5398f7b85e71a8c2f5bbb49cf838aff67e43255223791e9e86bc6741865e0b572bb5f0937899b
data/.gitignore CHANGED
@@ -6,6 +6,9 @@
6
6
  .bundle
7
7
  db/*.sqlite3
8
8
  gemfiles/*.lock
9
+ gemfiles/vendor/
9
10
  log/*.log
10
11
  pkg
11
12
  tmp/
13
+ doc/
14
+ .yardoc/
data/.travis.yml CHANGED
@@ -6,17 +6,36 @@ language:
6
6
  rvm:
7
7
  - 1.9.3
8
8
  - 2.0.0
9
- - 2.1.5
10
- - 2.2.0
9
+ - 2.1.8
10
+ - 2.2.4
11
+ - 2.3.0
11
12
 
12
- install:
13
- - "travis_retry bin/setup"
13
+ gemfile:
14
+ - gemfiles/rails32.gemfile
15
+ - gemfiles/rails40.gemfile
16
+ - gemfiles/rails41.gemfile
17
+ - gemfiles/rails42.gemfile
18
+ - gemfiles/rails50.gemfile
19
+
20
+ matrix:
21
+ exclude:
22
+ - rvm: 1.9.3
23
+ gemfile: gemfiles/rails50.gemfile
24
+ - rvm: 2.0.0
25
+ gemfile: gemfiles/rails50.gemfile
26
+ - rvm: 2.1.8
27
+ gemfile: gemfiles/rails50.gemfile
28
+ - rvm: 2.2.4
29
+ gemfile: gemfiles/rails32.gemfile
30
+ - rvm: 2.3.0
31
+ gemfile: gemfiles/rails32.gemfile
14
32
 
15
- script:
16
- - "bundle exec appraisal rake"
33
+ install:
34
+ - "bin/setup"
17
35
 
18
36
  branches:
19
37
  only:
20
38
  - master
39
+ - 2.0
21
40
 
22
41
  sudo: false
data/.yardopts ADDED
@@ -0,0 +1,6 @@
1
+ --protected
2
+ --private
3
+ --hide-api private
4
+ --exclude templates
5
+ --markup markdown
6
+ --markup-provider redcarpet
data/Appraisals CHANGED
@@ -1,18 +1,29 @@
1
1
  if RUBY_VERSION < "2.2.0"
2
- appraise 'rails3.2' do
2
+ appraise 'rails32' do
3
3
  gem 'rails', '~> 3.2.21'
4
4
  end
5
5
  end
6
6
 
7
- appraise 'rails4.0' do
7
+ appraise 'rails40' do
8
8
  gem 'rails', '~> 4.0.13'
9
9
  gem 'test-unit'
10
+ gem 'mime-types', '~> 2.99'
10
11
  end
11
12
 
12
- appraise 'rails4.1' do
13
+ appraise 'rails41' do
13
14
  gem 'rails', '~> 4.1.9'
15
+ gem 'mime-types', '~> 2.99'
14
16
  end
15
17
 
16
- appraise 'rails4.2' do
18
+ appraise 'rails42' do
17
19
  gem 'rails', '~> 4.2.0'
20
+ gem 'mime-types', '~> 2.99'
21
+ end
22
+
23
+ if RUBY_VERSION >= "2.2.0"
24
+ appraise "rails50" do
25
+ gem "rails", "~> 5.0.0.beta3"
26
+ gem "rails-controller-testing"
27
+ gem "rspec-rails", "~> 3.5.0.beta1"
28
+ end
18
29
  end
data/CONTRIBUTING.md CHANGED
@@ -1,4 +1,7 @@
1
- We love pull requests. Here's a quick guide:
1
+ We love pull requests from everyone. By participating in this project, you agree
2
+ to abide by the thoughtbot [code of conduct].
3
+
4
+ [code of conduct]: https://thoughtbot.com/open-source-code-of-conduct
2
5
 
3
6
  1. Fork the repo.
4
7
 
data/Gemfile CHANGED
@@ -2,14 +2,16 @@ source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
4
 
5
- gem 'appraisal', '~> 1.0'
5
+ gem 'addressable', '~> 2.4.0'
6
+ gem 'appraisal'
6
7
  gem 'ammeter'
7
8
  gem 'bundler', '~> 1.3'
8
- gem 'capybara', '>= 2.3'
9
+ gem 'capybara', '>= 2.6.2'
9
10
  gem 'database_cleaner', '~> 1.0'
10
11
  gem 'factory_girl_rails', '~> 4.2'
12
+ gem 'nokogiri', '~> 1.6.8'
11
13
  gem 'rspec-rails', '~> 3.1'
12
- gem 'shoulda-matchers', '~> 2.4'
14
+ gem 'shoulda-matchers', '~> 2.8'
13
15
  gem 'sqlite3', '~> 1.3'
14
16
  gem 'timecop', '~> 0.6'
15
17
  gem 'pry', require: false
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- clearance (1.8.0)
4
+ clearance (1.16.0)
5
5
  bcrypt
6
6
  email_validator (~> 1.4)
7
7
  rails (>= 3.1)
@@ -9,150 +9,151 @@ PATH
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- actionmailer (4.2.0)
13
- actionpack (= 4.2.0)
14
- actionview (= 4.2.0)
15
- activejob (= 4.2.0)
12
+ actionmailer (4.2.7.1)
13
+ actionpack (= 4.2.7.1)
14
+ actionview (= 4.2.7.1)
15
+ activejob (= 4.2.7.1)
16
16
  mail (~> 2.5, >= 2.5.4)
17
17
  rails-dom-testing (~> 1.0, >= 1.0.5)
18
- actionpack (4.2.0)
19
- actionview (= 4.2.0)
20
- activesupport (= 4.2.0)
21
- rack (~> 1.6.0)
18
+ actionpack (4.2.7.1)
19
+ actionview (= 4.2.7.1)
20
+ activesupport (= 4.2.7.1)
21
+ rack (~> 1.6)
22
22
  rack-test (~> 0.6.2)
23
23
  rails-dom-testing (~> 1.0, >= 1.0.5)
24
- rails-html-sanitizer (~> 1.0, >= 1.0.1)
25
- actionview (4.2.0)
26
- activesupport (= 4.2.0)
24
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
25
+ actionview (4.2.7.1)
26
+ activesupport (= 4.2.7.1)
27
27
  builder (~> 3.1)
28
28
  erubis (~> 2.7.0)
29
29
  rails-dom-testing (~> 1.0, >= 1.0.5)
30
- rails-html-sanitizer (~> 1.0, >= 1.0.1)
31
- activejob (4.2.0)
32
- activesupport (= 4.2.0)
30
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
31
+ activejob (4.2.7.1)
32
+ activesupport (= 4.2.7.1)
33
33
  globalid (>= 0.3.0)
34
- activemodel (4.2.0)
35
- activesupport (= 4.2.0)
34
+ activemodel (4.2.7.1)
35
+ activesupport (= 4.2.7.1)
36
36
  builder (~> 3.1)
37
- activerecord (4.2.0)
38
- activemodel (= 4.2.0)
39
- activesupport (= 4.2.0)
37
+ activerecord (4.2.7.1)
38
+ activemodel (= 4.2.7.1)
39
+ activesupport (= 4.2.7.1)
40
40
  arel (~> 6.0)
41
- activesupport (4.2.0)
41
+ activesupport (4.2.7.1)
42
42
  i18n (~> 0.7)
43
43
  json (~> 1.7, >= 1.7.7)
44
44
  minitest (~> 5.1)
45
45
  thread_safe (~> 0.3, >= 0.3.4)
46
46
  tzinfo (~> 1.1)
47
- ammeter (1.1.2)
47
+ addressable (2.4.0)
48
+ ammeter (1.1.3)
48
49
  activesupport (>= 3.0)
49
50
  railties (>= 3.0)
50
51
  rspec-rails (>= 2.2)
51
- appraisal (1.0.2)
52
+ appraisal (2.1.0)
52
53
  bundler
53
54
  rake
54
55
  thor (>= 0.14.0)
55
- arel (6.0.0)
56
- bcrypt (3.1.9)
57
- builder (3.2.2)
58
- capybara (2.4.4)
56
+ arel (6.0.4)
57
+ bcrypt (3.1.11)
58
+ builder (3.2.3)
59
+ capybara (2.7.1)
60
+ addressable
59
61
  mime-types (>= 1.16)
60
62
  nokogiri (>= 1.3.3)
61
63
  rack (>= 1.0.0)
62
64
  rack-test (>= 0.5.4)
63
65
  xpath (~> 2.0)
64
- coderay (1.1.0)
65
- database_cleaner (1.3.0)
66
+ coderay (1.1.1)
67
+ concurrent-ruby (1.0.4)
68
+ database_cleaner (1.5.3)
66
69
  diff-lcs (1.2.5)
67
- email_validator (1.5.0)
70
+ email_validator (1.6.0)
68
71
  activemodel
69
72
  erubis (2.7.0)
70
- factory_girl (4.5.0)
73
+ factory_girl (4.7.0)
71
74
  activesupport (>= 3.0.0)
72
- factory_girl_rails (4.5.0)
73
- factory_girl (~> 4.5.0)
75
+ factory_girl_rails (4.7.0)
76
+ factory_girl (~> 4.7.0)
74
77
  railties (>= 3.0.0)
75
- globalid (0.3.0)
78
+ globalid (0.3.7)
76
79
  activesupport (>= 4.1.0)
77
- hike (1.2.3)
78
80
  i18n (0.7.0)
79
- json (1.8.1)
80
- loofah (2.0.1)
81
+ json (1.8.6)
82
+ loofah (2.0.3)
81
83
  nokogiri (>= 1.5.9)
82
- mail (2.6.3)
83
- mime-types (>= 1.16, < 3)
84
+ mail (2.6.4)
85
+ mime-types (>= 1.16, < 4)
84
86
  method_source (0.8.2)
85
- mime-types (2.4.3)
86
- mini_portile (0.6.2)
87
- minitest (5.5.0)
88
- multi_json (1.10.1)
89
- nokogiri (1.6.5)
90
- mini_portile (~> 0.6.0)
91
- pry (0.10.1)
87
+ mime-types (3.1)
88
+ mime-types-data (~> 3.2015)
89
+ mime-types-data (3.2016.0521)
90
+ mini_portile2 (2.1.0)
91
+ minitest (5.10.1)
92
+ nokogiri (1.6.8.1)
93
+ mini_portile2 (~> 2.1.0)
94
+ pry (0.10.3)
92
95
  coderay (~> 1.1.0)
93
96
  method_source (~> 0.8.1)
94
97
  slop (~> 3.4)
95
- rack (1.6.0)
98
+ rack (1.6.5)
96
99
  rack-test (0.6.3)
97
100
  rack (>= 1.0)
98
- rails (4.2.0)
99
- actionmailer (= 4.2.0)
100
- actionpack (= 4.2.0)
101
- actionview (= 4.2.0)
102
- activejob (= 4.2.0)
103
- activemodel (= 4.2.0)
104
- activerecord (= 4.2.0)
105
- activesupport (= 4.2.0)
101
+ rails (4.2.7.1)
102
+ actionmailer (= 4.2.7.1)
103
+ actionpack (= 4.2.7.1)
104
+ actionview (= 4.2.7.1)
105
+ activejob (= 4.2.7.1)
106
+ activemodel (= 4.2.7.1)
107
+ activerecord (= 4.2.7.1)
108
+ activesupport (= 4.2.7.1)
106
109
  bundler (>= 1.3.0, < 2.0)
107
- railties (= 4.2.0)
110
+ railties (= 4.2.7.1)
108
111
  sprockets-rails
109
112
  rails-deprecated_sanitizer (1.0.3)
110
113
  activesupport (>= 4.2.0.alpha)
111
- rails-dom-testing (1.0.5)
114
+ rails-dom-testing (1.0.8)
112
115
  activesupport (>= 4.2.0.beta, < 5.0)
113
- nokogiri (~> 1.6.0)
116
+ nokogiri (~> 1.6)
114
117
  rails-deprecated_sanitizer (>= 1.0.1)
115
- rails-html-sanitizer (1.0.1)
118
+ rails-html-sanitizer (1.0.3)
116
119
  loofah (~> 2.0)
117
- railties (4.2.0)
118
- actionpack (= 4.2.0)
119
- activesupport (= 4.2.0)
120
+ railties (4.2.7.1)
121
+ actionpack (= 4.2.7.1)
122
+ activesupport (= 4.2.7.1)
120
123
  rake (>= 0.8.7)
121
124
  thor (>= 0.18.1, < 2.0)
122
- rake (10.4.2)
123
- rspec-core (3.1.7)
124
- rspec-support (~> 3.1.0)
125
- rspec-expectations (3.1.2)
125
+ rake (12.0.0)
126
+ rspec-core (3.4.4)
127
+ rspec-support (~> 3.4.0)
128
+ rspec-expectations (3.4.0)
126
129
  diff-lcs (>= 1.2.0, < 2.0)
127
- rspec-support (~> 3.1.0)
128
- rspec-mocks (3.1.3)
129
- rspec-support (~> 3.1.0)
130
- rspec-rails (3.1.0)
131
- actionpack (>= 3.0)
132
- activesupport (>= 3.0)
133
- railties (>= 3.0)
134
- rspec-core (~> 3.1.0)
135
- rspec-expectations (~> 3.1.0)
136
- rspec-mocks (~> 3.1.0)
137
- rspec-support (~> 3.1.0)
138
- rspec-support (3.1.2)
139
- shoulda-matchers (2.7.0)
130
+ rspec-support (~> 3.4.0)
131
+ rspec-mocks (3.4.1)
132
+ diff-lcs (>= 1.2.0, < 2.0)
133
+ rspec-support (~> 3.4.0)
134
+ rspec-rails (3.4.2)
135
+ actionpack (>= 3.0, < 4.3)
136
+ activesupport (>= 3.0, < 4.3)
137
+ railties (>= 3.0, < 4.3)
138
+ rspec-core (~> 3.4.0)
139
+ rspec-expectations (~> 3.4.0)
140
+ rspec-mocks (~> 3.4.0)
141
+ rspec-support (~> 3.4.0)
142
+ rspec-support (3.4.1)
143
+ shoulda-matchers (2.8.0)
140
144
  activesupport (>= 3.0.0)
141
145
  slop (3.6.0)
142
- sprockets (2.12.3)
143
- hike (~> 1.2)
144
- multi_json (~> 1.0)
145
- rack (~> 1.0)
146
- tilt (~> 1.1, != 1.3.0)
147
- sprockets-rails (2.2.2)
148
- actionpack (>= 3.0)
149
- activesupport (>= 3.0)
150
- sprockets (>= 2.8, < 4.0)
151
- sqlite3 (1.3.10)
152
- thor (0.19.1)
153
- thread_safe (0.3.4)
154
- tilt (1.4.1)
155
- timecop (0.7.1)
146
+ sprockets (3.7.1)
147
+ concurrent-ruby (~> 1.0)
148
+ rack (> 1, < 3)
149
+ sprockets-rails (3.2.0)
150
+ actionpack (>= 4.0)
151
+ activesupport (>= 4.0)
152
+ sprockets (>= 3.0.0)
153
+ sqlite3 (1.3.11)
154
+ thor (0.19.4)
155
+ thread_safe (0.3.5)
156
+ timecop (0.8.1)
156
157
  tzinfo (1.2.2)
157
158
  thread_safe (~> 0.1)
158
159
  xpath (2.0.0)
@@ -162,15 +163,20 @@ PLATFORMS
162
163
  ruby
163
164
 
164
165
  DEPENDENCIES
166
+ addressable (~> 2.4.0)
165
167
  ammeter
166
- appraisal (~> 1.0)
168
+ appraisal
167
169
  bundler (~> 1.3)
168
- capybara (>= 2.3)
170
+ capybara (>= 2.6.2)
169
171
  clearance!
170
172
  database_cleaner (~> 1.0)
171
173
  factory_girl_rails (~> 4.2)
174
+ nokogiri (~> 1.6.8)
172
175
  pry
173
176
  rspec-rails (~> 3.1)
174
- shoulda-matchers (~> 2.4)
177
+ shoulda-matchers (~> 2.8)
175
178
  sqlite3 (~> 1.3)
176
179
  timecop (~> 0.6)
180
+
181
+ BUNDLED WITH
182
+ 1.10.6