devise 3.3.0 → 3.4.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of devise might be problematic. Click here for more details.

Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +1 -1
  3. data/CHANGELOG.md +23 -1
  4. data/Gemfile +2 -2
  5. data/Gemfile.lock +81 -55
  6. data/README.md +28 -5
  7. data/app/controllers/devise/confirmations_controller.rb +1 -1
  8. data/app/views/devise/shared/{_links.erb → _links.html.erb} +0 -0
  9. data/config/locales/en.yml +2 -2
  10. data/devise.gemspec +1 -0
  11. data/gemfiles/Gemfile.rails-3.2-stable.lock +5 -2
  12. data/gemfiles/Gemfile.rails-4.0-stable.lock +25 -22
  13. data/gemfiles/{Gemfile.rails-head → Gemfile.rails-4.1-stable} +2 -5
  14. data/gemfiles/{Gemfile.rails-head.lock → Gemfile.rails-4.1-stable.lock} +45 -65
  15. data/lib/devise.rb +2 -1
  16. data/lib/devise/failure_app.rb +6 -1
  17. data/lib/devise/mapping.rb +1 -1
  18. data/lib/devise/models/authenticatable.rb +8 -2
  19. data/lib/devise/models/lockable.rb +2 -2
  20. data/lib/devise/rails/routes.rb +6 -9
  21. data/lib/devise/strategies/authenticatable.rb +1 -2
  22. data/lib/devise/strategies/database_authenticatable.rb +1 -0
  23. data/lib/devise/strategies/rememberable.rb +6 -3
  24. data/lib/devise/version.rb +1 -1
  25. data/lib/generators/active_record/devise_generator.rb +2 -1
  26. data/lib/generators/devise/controllers_generator.rb +44 -0
  27. data/lib/generators/templates/controllers/README +14 -0
  28. data/lib/generators/templates/controllers/confirmations_controller.rb +28 -0
  29. data/lib/generators/templates/controllers/omniauth_callbacks_controller.rb +28 -0
  30. data/lib/generators/templates/controllers/passwords_controller.rb +32 -0
  31. data/lib/generators/templates/controllers/registrations_controller.rb +60 -0
  32. data/lib/generators/templates/controllers/sessions_controller.rb +25 -0
  33. data/lib/generators/templates/controllers/unlocks_controller.rb +28 -0
  34. data/lib/generators/templates/devise.rb +2 -2
  35. data/lib/generators/templates/simple_form_for/registrations/new.html.erb +1 -1
  36. data/lib/generators/templates/simple_form_for/sessions/new.html.erb +2 -2
  37. data/test/controllers/url_helpers_test.rb +6 -0
  38. data/test/generators/controllers_generator_test.rb +48 -0
  39. data/test/generators/views_generator_test.rb +1 -1
  40. data/test/helpers/devise_helper_test.rb +9 -12
  41. data/test/integration/authenticatable_test.rb +1 -1
  42. data/test/integration/http_authenticatable_test.rb +1 -1
  43. data/test/mapping_test.rb +1 -0
  44. data/test/models/authenticatable_test.rb +10 -0
  45. data/test/models/confirmable_test.rb +5 -4
  46. data/test/models/lockable_test.rb +16 -10
  47. data/test/rails_app/app/mailers/users/from_proc_mailer.rb +3 -0
  48. data/test/rails_app/app/mailers/users/mailer.rb +0 -9
  49. data/test/rails_app/app/mailers/users/reply_to_mailer.rb +4 -0
  50. data/test/rails_app/db/migrate/20100401102949_create_tables.rb +2 -2
  51. data/test/support/helpers.rb +9 -6
  52. data/test/test_helper.rb +5 -0
  53. metadata +33 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7a79724cdbd2d14aed052324284f0c46ccc73105
4
- data.tar.gz: fb827a2e7cf992d9172084057d3299a67223fc90
3
+ metadata.gz: a4a63d11db247c5ff37458c4428aeab1157a8348
4
+ data.tar.gz: e7f12ffe07a25af2e7c237d730292ac3802ee485
5
5
  SHA512:
6
- metadata.gz: 4a0e69c16b5ec178882c8fea6a5a722342d59b5af1277c2fad6117f90a16f9eaafa7a36c7b20e3ec3154755071fb08a1788ec727b7de7bb460665a6dbde48e65
7
- data.tar.gz: b2f16d7a9954c35675098a37659485266f221f84c861906155290ccb8d514f0056ecf312f86b57e85a670b03c152884bafef019f25f2fdd47c8ce2a1fce2a5cf
6
+ metadata.gz: d3ba135a520942fca0de03af35fdf6cb1d898abba04dba3febc20e59b6f879e56d8d59f6009a5086e9bbee2747abd6ae41c33d5e6d36d6b39d2963ebafa3d6df
7
+ data.tar.gz: 8c44ba76ff75f1a917901351879c43c72e23cb0f994ce1723d9814f3f022b3be388c474579fc7cd400135b743e5d13ebeaa52b8a5c4da86418d2321a2e1a6090
@@ -17,7 +17,7 @@ env:
17
17
  # AMAZON_SECRET_ACCESS_KEY
18
18
  - secure: "VJ4qiWMzoleLojCcluX+w0RtaFVc9ybRNo6NODkGhHSaao8+4EX4rETBQG67tNSInk1iuNqCcZAGwC8V/12RXdao3PguRSLD5IiKeT+D78dqFEoP0+yHg4PbmZ6TJXADW3gUv/IOqkW7f/UYGinRaPu7hloyiC498FpQdmMWSNI="
19
19
  gemfile:
20
- - gemfiles/Gemfile.rails-head
20
+ - gemfiles/Gemfile.rails-4.1-stable
21
21
  - gemfiles/Gemfile.rails-4.0-stable
22
22
  - gemfiles/Gemfile.rails-3.2-stable
23
23
  - Gemfile
@@ -1,7 +1,29 @@
1
1
  ### Unreleased
2
2
 
3
3
  * enhancements
4
- * bug fixes
4
+ * bugfixes
5
+
6
+ ### 3.4.0
7
+
8
+ * enhancements
9
+ * Support added for Rails 4.2. Devise now depends on the `responders` gem due
10
+ the extraction of the `respond_with` API from Rails. (by @lucasmazza)
11
+ * The Simple Form templates follow the same change from 3.3.0 by using `Log in` and adding
12
+ a hint about the minimum password length when `validatable` is enabled. (by @aried3r)
13
+ * Remove reloading of routes when eager loading is enabled. This change was added during Rails 3 and it doesn't seem to be relevant to currently supported Rails versions (by @fgro)
14
+ * Controller generator added as `devise:controllers SCOPE`. You can use the `-c` flag
15
+ to pick which controllers (`unlocks`, `confirmations`, etc) you want to generate. (by @Chun-Yang)
16
+ * Removed the hardcoded references for "email" in the flash messages. If you are using
17
+ different attributes as the `authentication_keys` they will be interpolated in the
18
+ messages instead. (by @timoschilling)
19
+ * bug fix
20
+ * Fixed a regression where the devise generator would fail with a `ConnectionNotEstablished`
21
+ exception when executed inside a mountable engine. (by @lucasmazza)
22
+ * Ensure to return symbols in find_scope! fixing a previous regression from 3.3.0 (by @micat)
23
+ * Ensure all causes of failed login have the same error message (by @pjungwir)
24
+ * The `last_attempt_warning` now takes effect when generating the unauthenticated
25
+ message for your users. To keep the current behavior, this flag is now `true`
26
+ by default. (by @lucasmazza)
5
27
 
6
28
  ### 3.3.0
7
29
 
data/Gemfile CHANGED
@@ -2,7 +2,7 @@ source "https://rubygems.org"
2
2
 
3
3
  gemspec
4
4
 
5
- gem "rails", "~> 4.1.0"
5
+ gem "rails", "4.2.0.beta2"
6
6
  gem "omniauth", "~> 1.2.0"
7
7
  gem "omniauth-oauth2", "~> 1.1.0"
8
8
  gem "rdoc"
@@ -25,5 +25,5 @@ platforms :ruby do
25
25
  end
26
26
 
27
27
  group :mongoid do
28
- gem "mongoid", "~> 4.0.0"
28
+ gem "mongoid", github: "mongoid/mongoid", branch: "master"
29
29
  end
@@ -1,43 +1,64 @@
1
+ GIT
2
+ remote: git://github.com/mongoid/mongoid.git
3
+ revision: 5ba2e1fb4cb8189c9890e29c19cf4e16c25e4bc5
4
+ branch: master
5
+ specs:
6
+ mongoid (4.0.0)
7
+ activemodel (~> 4.0)
8
+ moped (~> 2.0.0)
9
+ origin (~> 2.1)
10
+ tzinfo (>= 0.3.37)
11
+
1
12
  PATH
2
13
  remote: .
3
14
  specs:
4
- devise (3.3.0)
15
+ devise (3.4.0)
5
16
  bcrypt (~> 3.0)
6
17
  orm_adapter (~> 0.1)
7
18
  railties (>= 3.2.6, < 5)
19
+ responders
8
20
  thread_safe (~> 0.1)
9
21
  warden (~> 1.2.3)
10
22
 
11
23
  GEM
12
24
  remote: https://rubygems.org/
13
25
  specs:
14
- actionmailer (4.1.4)
15
- actionpack (= 4.1.4)
16
- actionview (= 4.1.4)
17
- mail (~> 2.5.4)
18
- actionpack (4.1.4)
19
- actionview (= 4.1.4)
20
- activesupport (= 4.1.4)
21
- rack (~> 1.5.2)
26
+ actionmailer (4.2.0.beta2)
27
+ actionpack (= 4.2.0.beta2)
28
+ actionview (= 4.2.0.beta2)
29
+ activejob (= 4.2.0.beta2)
30
+ mail (~> 2.5, >= 2.5.4)
31
+ rails-dom-testing (~> 1.0, >= 1.0.3)
32
+ actionpack (4.2.0.beta2)
33
+ actionview (= 4.2.0.beta2)
34
+ activesupport (= 4.2.0.beta2)
35
+ rack (~> 1.6.0.beta)
22
36
  rack-test (~> 0.6.2)
23
- actionview (4.1.4)
24
- activesupport (= 4.1.4)
37
+ rails-dom-testing (~> 1.0, >= 1.0.3)
38
+ rails-html-sanitizer (~> 1.0, >= 1.0.1)
39
+ actionview (4.2.0.beta2)
40
+ activesupport (= 4.2.0.beta2)
25
41
  builder (~> 3.1)
26
42
  erubis (~> 2.7.0)
27
- activemodel (4.1.4)
28
- activesupport (= 4.1.4)
43
+ rails-dom-testing (~> 1.0, >= 1.0.3)
44
+ rails-html-sanitizer (~> 1.0, >= 1.0.1)
45
+ activejob (4.2.0.beta2)
46
+ activesupport (= 4.2.0.beta2)
47
+ globalid (>= 0.3.0)
48
+ activemodel (4.2.0.beta2)
49
+ activesupport (= 4.2.0.beta2)
29
50
  builder (~> 3.1)
30
- activerecord (4.1.4)
31
- activemodel (= 4.1.4)
32
- activesupport (= 4.1.4)
33
- arel (~> 5.0.0)
34
- activesupport (4.1.4)
35
- i18n (~> 0.6, >= 0.6.9)
51
+ activerecord (4.2.0.beta2)
52
+ activemodel (= 4.2.0.beta2)
53
+ activesupport (= 4.2.0.beta2)
54
+ arel (>= 6.0.0.beta1, < 6.1)
55
+ activesupport (4.2.0.beta2)
56
+ i18n (>= 0.7.0.beta1, < 0.8)
36
57
  json (~> 1.7, >= 1.7.7)
37
58
  minitest (~> 5.1)
38
59
  thread_safe (~> 0.1)
39
60
  tzinfo (~> 1.1)
40
- arel (5.0.1.20140414130214)
61
+ arel (6.0.0.beta1)
41
62
  bcrypt (3.1.7)
42
63
  bson (2.3.0)
43
64
  builder (3.2.2)
@@ -45,25 +66,23 @@ GEM
45
66
  erubis (2.7.0)
46
67
  faraday (0.9.0)
47
68
  multipart-post (>= 1.2, < 3)
69
+ globalid (0.3.0)
70
+ activesupport (>= 4.1.0)
48
71
  hashie (3.2.0)
49
72
  hike (1.2.3)
50
- i18n (0.6.11)
73
+ i18n (0.7.0.beta1)
51
74
  json (1.8.1)
52
75
  jwt (1.0.0)
53
- mail (2.5.4)
54
- mime-types (~> 1.16)
55
- treetop (~> 1.4.8)
76
+ loofah (2.0.1)
77
+ nokogiri (>= 1.5.9)
78
+ mail (2.6.1)
79
+ mime-types (>= 1.16, < 3)
56
80
  metaclass (0.0.4)
57
- mime-types (1.25.1)
81
+ mime-types (2.3)
58
82
  mini_portile (0.6.0)
59
- minitest (5.4.0)
83
+ minitest (5.4.2)
60
84
  mocha (1.1.0)
61
85
  metaclass (~> 0.0.1)
62
- mongoid (4.0.0)
63
- activemodel (~> 4.0)
64
- moped (~> 2.0.0)
65
- origin (~> 2.1)
66
- tzinfo (>= 0.3.37)
67
86
  moped (2.0.0)
68
87
  bson (~> 2.2)
69
88
  connection_pool (~> 2.0)
@@ -95,49 +114,56 @@ GEM
95
114
  optionable (0.2.0)
96
115
  origin (2.1.1)
97
116
  orm_adapter (0.5.0)
98
- polyglot (0.3.5)
99
- rack (1.5.2)
117
+ rack (1.6.0.beta)
100
118
  rack-openid (1.3.1)
101
119
  rack (>= 1.1.0)
102
120
  ruby-openid (>= 2.1.8)
103
121
  rack-test (0.6.2)
104
122
  rack (>= 1.0)
105
- rails (4.1.4)
106
- actionmailer (= 4.1.4)
107
- actionpack (= 4.1.4)
108
- actionview (= 4.1.4)
109
- activemodel (= 4.1.4)
110
- activerecord (= 4.1.4)
111
- activesupport (= 4.1.4)
123
+ rails (4.2.0.beta2)
124
+ actionmailer (= 4.2.0.beta2)
125
+ actionpack (= 4.2.0.beta2)
126
+ actionview (= 4.2.0.beta2)
127
+ activejob (= 4.2.0.beta2)
128
+ activemodel (= 4.2.0.beta2)
129
+ activerecord (= 4.2.0.beta2)
130
+ activesupport (= 4.2.0.beta2)
112
131
  bundler (>= 1.3.0, < 2.0)
113
- railties (= 4.1.4)
114
- sprockets-rails (~> 2.0)
115
- railties (4.1.4)
116
- actionpack (= 4.1.4)
117
- activesupport (= 4.1.4)
132
+ railties (= 4.2.0.beta2)
133
+ sprockets-rails (~> 3.0.0.beta1)
134
+ rails-deprecated_sanitizer (1.0.3)
135
+ activesupport (>= 4.2.0.alpha)
136
+ rails-dom-testing (1.0.3)
137
+ activesupport
138
+ nokogiri (~> 1.6.0)
139
+ rails-deprecated_sanitizer (>= 1.0.1)
140
+ rails-html-sanitizer (1.0.1)
141
+ loofah (~> 2.0)
142
+ railties (4.2.0.beta2)
143
+ actionpack (= 4.2.0.beta2)
144
+ activesupport (= 4.2.0.beta2)
118
145
  rake (>= 0.8.7)
119
146
  thor (>= 0.18.1, < 2.0)
120
147
  rake (10.3.2)
121
148
  rdoc (4.1.1)
122
149
  json (~> 1.4)
150
+ responders (2.0.0)
151
+ railties (>= 4.2.0.alpha, < 5)
123
152
  ruby-openid (2.5.0)
124
- sprockets (2.12.1)
153
+ sprockets (2.12.2)
125
154
  hike (~> 1.2)
126
155
  multi_json (~> 1.0)
127
156
  rack (~> 1.0)
128
157
  tilt (~> 1.1, != 1.3.0)
129
- sprockets-rails (2.1.3)
130
- actionpack (>= 3.0)
131
- activesupport (>= 3.0)
158
+ sprockets-rails (3.0.0.beta1)
159
+ actionpack (>= 4.0)
160
+ activesupport (>= 4.0)
132
161
  sprockets (~> 2.8)
133
162
  sqlite3 (1.3.9)
134
163
  thor (0.19.1)
135
164
  thread_safe (0.3.4)
136
165
  tilt (1.4.1)
137
- treetop (1.4.15)
138
- polyglot
139
- polyglot (>= 0.3.1)
140
- tzinfo (1.2.1)
166
+ tzinfo (1.2.2)
141
167
  thread_safe (~> 0.1)
142
168
  warden (1.2.3)
143
169
  rack (>= 1.0)
@@ -155,12 +181,12 @@ DEPENDENCIES
155
181
  devise!
156
182
  jruby-openssl
157
183
  mocha (~> 1.1)
158
- mongoid (~> 4.0.0)
184
+ mongoid!
159
185
  omniauth (~> 1.2.0)
160
186
  omniauth-facebook
161
187
  omniauth-oauth2 (~> 1.1.0)
162
188
  omniauth-openid (~> 1.0.1)
163
- rails (~> 4.1.0)
189
+ rails (= 4.2.0.beta2)
164
190
  rdoc
165
191
  sqlite3
166
192
  webrat (= 0.7.3)
data/README.md CHANGED
@@ -4,6 +4,7 @@ By [Plataformatec](http://plataformatec.com.br/).
4
4
 
5
5
  [![Build Status](https://api.travis-ci.org/plataformatec/devise.png?branch=master)](http://travis-ci.org/plataformatec/devise)
6
6
  [![Code Climate](https://codeclimate.com/github/plataformatec/devise.png)](https://codeclimate.com/github/plataformatec/devise)
7
+ [![Security](https://hakiri.io/github/plataformatec/devise/master.svg)](https://hakiri.io/github/plataformatec/devise/master)
7
8
 
8
9
  This README is [also available in a friendly navigable format](http://devise.plataformatec.com.br/).
9
10
 
@@ -186,7 +187,7 @@ When you customize your own views, you may end up adding new attributes to forms
186
187
 
187
188
  There are just three actions in Devise that allows any set of parameters to be passed down to the model, therefore requiring sanitization. Their names and the permitted parameters by default are:
188
189
 
189
- * `sign_in` (`Devise::SessionsController#new`) - Permits only the authentication keys (like `email`)
190
+ * `sign_in` (`Devise::SessionsController#create`) - Permits only the authentication keys (like `email`)
190
191
  * `sign_up` (`Devise::RegistrationsController#create`) - Permits authentication keys plus `password` and `password_confirmation`
191
192
  * `account_update` (`Devise::RegistrationsController#update`) - Permits authentication keys plus `password`, `password_confirmation` and `current_password`
192
193
 
@@ -282,15 +283,25 @@ rails generate devise:views -v registrations confirmations
282
283
 
283
284
  If the customization at the views level is not enough, you can customize each controller by following these steps:
284
285
 
285
- 1. Create your custom controller, for example a `Admins::SessionsController`:
286
+ 1. Create your custom controllers using the generator which requires a scope:
287
+
288
+ ```console
289
+ rails generate devise:controllers [scope]
290
+ ```
291
+
292
+ If you specify `admins` as the scope, controllers will be created in `app/controllers/admins/`.
293
+ And the sessions controller will look like this:
286
294
 
287
295
  ```ruby
288
296
  class Admins::SessionsController < Devise::SessionsController
297
+ # GET /resource/sign_in
298
+ # def new
299
+ # super
300
+ # end
301
+ ...
289
302
  end
290
303
  ```
291
304
 
292
- Note that in the above example, the controller needs to be created in the `app/controllers/admins/` directory.
293
-
294
305
  2. Tell the router to use this controller:
295
306
 
296
307
  ```ruby
@@ -399,7 +410,7 @@ class ActionController::TestCase
399
410
  end
400
411
  ```
401
412
 
402
- If you're using RSpec, you can put the following inside a file named `spec/support/devise.rb` or in your `spec/spec_helper.rb`:
413
+ If you're using RSpec, you can put the following inside a file named `spec/support/devise.rb` or in your `spec/spec_helper.rb` (or `spec/rails_helper.rb` if you are using rspec-rails):
403
414
 
404
415
  ```ruby
405
416
  RSpec.configure do |config|
@@ -471,6 +482,18 @@ Alternatively, you can simply run the Devise generator.
471
482
 
472
483
  Keep in mind that those models will have completely different routes. They **do not** and **cannot** share the same controller for sign in, sign out and so on. In case you want to have different roles sharing the same actions, we recommend you to use a role-based approach, by either providing a role column or using a dedicated gem for authorization.
473
484
 
485
+ ### ActiveJob Integration
486
+
487
+ If you are using Rails 4.2 and ActiveJob to deliver ActionMailer messages in the
488
+ background through a queueing backend, you can send Devise emails through your
489
+ existing queue by overriding the `send_devise_notification` method in your model.
490
+
491
+ ```ruby
492
+ def send_devise_notification(notification, *args)
493
+ devise_mailer.send(notification, self, *args).deliver_later
494
+ end
495
+ ```
496
+
474
497
  ### Other ORMs
475
498
 
476
499
  Devise supports ActiveRecord (default) and Mongoid. To choose other ORM, you just need to require it in the initializer file.
@@ -33,7 +33,7 @@ class Devise::ConfirmationsController < DeviseController
33
33
 
34
34
  # The path used after resending confirmation instructions.
35
35
  def after_resending_confirmation_instructions_path_for(resource_name)
36
- new_session_path(resource_name) if is_navigational_format?
36
+ is_navigational_format? ? new_session_path(resource_name) : '/'
37
37
  end
38
38
 
39
39
  # The path used after confirmation.
@@ -9,10 +9,10 @@ en:
9
9
  failure:
10
10
  already_authenticated: "You are already signed in."
11
11
  inactive: "Your account is not activated yet."
12
- invalid: "Invalid email or password."
12
+ invalid: "Invalid %{authentication_keys} or password."
13
13
  locked: "Your account is locked."
14
14
  last_attempt: "You have one more attempt before your account is locked."
15
- not_found_in_database: "Invalid email address or password."
15
+ not_found_in_database: "Invalid %{authentication_keys} or password."
16
16
  timeout: "Your session expired. Please sign in again to continue."
17
17
  unauthenticated: "You need to sign in or sign up before continuing."
18
18
  unconfirmed: "You have to confirm your email address before continuing."
@@ -24,4 +24,5 @@ Gem::Specification.new do |s|
24
24
  s.add_dependency("bcrypt", "~> 3.0")
25
25
  s.add_dependency("thread_safe", "~> 0.1")
26
26
  s.add_dependency("railties", ">= 3.2.6", "< 5")
27
+ s.add_dependency("responders")
27
28
  end
@@ -49,10 +49,11 @@ GIT
49
49
  PATH
50
50
  remote: ..
51
51
  specs:
52
- devise (3.3.0)
52
+ devise (3.4.0)
53
53
  bcrypt (~> 3.0)
54
54
  orm_adapter (~> 0.1)
55
55
  railties (>= 3.2.6, < 5)
56
+ responders
56
57
  thread_safe (~> 0.1)
57
58
  warden (~> 1.2.3)
58
59
 
@@ -125,6 +126,8 @@ GEM
125
126
  rake (10.3.2)
126
127
  rdoc (3.12.2)
127
128
  json (~> 1.4)
129
+ responders (1.1.1)
130
+ railties (>= 3.2, < 4.2)
128
131
  ruby-openid (2.5.0)
129
132
  sprockets (2.2.2)
130
133
  hike (~> 1.2)
@@ -138,7 +141,7 @@ GEM
138
141
  treetop (1.4.15)
139
142
  polyglot
140
143
  polyglot (>= 0.3.1)
141
- tzinfo (0.3.40)
144
+ tzinfo (0.3.41)
142
145
  warden (1.2.3)
143
146
  rack (>= 1.0)
144
147
  webrat (0.7.3)
@@ -1,52 +1,53 @@
1
1
  GIT
2
2
  remote: git://github.com/rails/rails.git
3
- revision: 6d95e04c6968fb7597ea5dbd08b31f271fb87c9c
3
+ revision: 2d8886e05104316273a0f95dfbcd171d3b12678b
4
4
  branch: 4-0-stable
5
5
  specs:
6
- actionmailer (4.0.8)
7
- actionpack (= 4.0.8)
6
+ actionmailer (4.0.9)
7
+ actionpack (= 4.0.9)
8
8
  mail (~> 2.5, >= 2.5.4)
9
- actionpack (4.0.8)
10
- activesupport (= 4.0.8)
9
+ actionpack (4.0.9)
10
+ activesupport (= 4.0.9)
11
11
  builder (~> 3.1.0)
12
12
  erubis (~> 2.7.0)
13
13
  rack (~> 1.5.2)
14
14
  rack-test (~> 0.6.2)
15
- activemodel (4.0.8)
16
- activesupport (= 4.0.8)
15
+ activemodel (4.0.9)
16
+ activesupport (= 4.0.9)
17
17
  builder (~> 3.1.0)
18
- activerecord (4.0.8)
19
- activemodel (= 4.0.8)
18
+ activerecord (4.0.9)
19
+ activemodel (= 4.0.9)
20
20
  activerecord-deprecated_finders (~> 1.0.2)
21
- activesupport (= 4.0.8)
21
+ activesupport (= 4.0.9)
22
22
  arel (~> 4.0.0)
23
- activesupport (4.0.8)
23
+ activesupport (4.0.9)
24
24
  i18n (~> 0.6, >= 0.6.9)
25
25
  minitest (~> 4.2)
26
26
  multi_json (~> 1.3)
27
27
  thread_safe (~> 0.1)
28
28
  tzinfo (~> 0.3.37)
29
- rails (4.0.8)
30
- actionmailer (= 4.0.8)
31
- actionpack (= 4.0.8)
32
- activerecord (= 4.0.8)
33
- activesupport (= 4.0.8)
29
+ rails (4.0.9)
30
+ actionmailer (= 4.0.9)
31
+ actionpack (= 4.0.9)
32
+ activerecord (= 4.0.9)
33
+ activesupport (= 4.0.9)
34
34
  bundler (>= 1.3.0, < 2.0)
35
- railties (= 4.0.8)
35
+ railties (= 4.0.9)
36
36
  sprockets-rails (~> 2.0)
37
- railties (4.0.8)
38
- actionpack (= 4.0.8)
39
- activesupport (= 4.0.8)
37
+ railties (4.0.9)
38
+ actionpack (= 4.0.9)
39
+ activesupport (= 4.0.9)
40
40
  rake (>= 0.8.7)
41
41
  thor (>= 0.18.1, < 2.0)
42
42
 
43
43
  PATH
44
44
  remote: ..
45
45
  specs:
46
- devise (3.3.0)
46
+ devise (3.4.0)
47
47
  bcrypt (~> 3.0)
48
48
  orm_adapter (~> 0.1)
49
49
  railties (>= 3.2.6, < 5)
50
+ responders
50
51
  thread_safe (~> 0.1)
51
52
  warden (~> 1.2.3)
52
53
 
@@ -120,6 +121,8 @@ GEM
120
121
  rake (10.3.2)
121
122
  rdoc (4.1.1)
122
123
  json (~> 1.4)
124
+ responders (1.1.1)
125
+ railties (>= 3.2, < 4.2)
123
126
  ruby-openid (2.5.0)
124
127
  sprockets (2.12.1)
125
128
  hike (~> 1.2)
@@ -134,7 +137,7 @@ GEM
134
137
  thor (0.19.1)
135
138
  thread_safe (0.3.4)
136
139
  tilt (1.4.1)
137
- tzinfo (0.3.40)
140
+ tzinfo (0.3.41)
138
141
  warden (1.2.3)
139
142
  rack (>= 1.0)
140
143
  webrat (0.7.3)