devise_token_auth 0.1.31.beta2 → 0.1.31.beta3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/devise_token_auth/application_controller.rb +0 -1
- data/app/controllers/devise_token_auth/concerns/set_user_by_token.rb +1 -1
- data/app/controllers/devise_token_auth/registrations_controller.rb +0 -2
- data/app/models/devise_token_auth/concerns/user.rb +2 -2
- data/app/views/devise/mailer/confirmation_instructions.html.erb +1 -1
- data/app/views/devise/mailer/reset_password_instructions.html.erb +1 -1
- data/app/views/devise/mailer/unlock_instructions.html.erb +1 -1
- data/lib/devise_token_auth/version.rb +1 -1
- data/test/controllers/devise_token_auth/omniauth_callbacks_controller_test.rb +1 -1
- data/test/controllers/devise_token_auth/registrations_controller_test.rb +2 -16
- data/test/dummy/app/controllers/application_controller.rb +0 -2
- data/test/dummy/config/application.yml +6 -6
- data/test/dummy/config/environments/production.rb +1 -1
- data/test/dummy/config/environments/test.rb +4 -1
- data/test/dummy/config/routes.rb +4 -2
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +116609 -0
- data/test/dummy/tmp/generators/app/controllers/application_controller.rb +6 -0
- data/test/dummy/tmp/generators/db/migrate/{20150105021617_devise_token_auth_create_users.rb → 20150105043654_devise_token_auth_create_users.rb} +0 -0
- data/test/lib/generators/devise_token_auth/install_generator_test.rb +0 -2
- metadata +7 -7
- data/test/dummy/tmp/generators/config/routes.rb +0 -4
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: devise_token_auth
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.31.
|
|
4
|
+
version: 0.1.31.beta3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lynn Hurley
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '4.
|
|
19
|
+
version: '4.2'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '4.
|
|
26
|
+
version: '4.2'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: devise
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -203,10 +203,10 @@ files:
|
|
|
203
203
|
- test/dummy/public/422.html
|
|
204
204
|
- test/dummy/public/500.html
|
|
205
205
|
- test/dummy/public/favicon.ico
|
|
206
|
+
- test/dummy/tmp/generators/app/controllers/application_controller.rb
|
|
206
207
|
- test/dummy/tmp/generators/app/models/user.rb
|
|
207
208
|
- test/dummy/tmp/generators/config/initializers/devise_token_auth.rb
|
|
208
|
-
- test/dummy/tmp/generators/
|
|
209
|
-
- test/dummy/tmp/generators/db/migrate/20150105021617_devise_token_auth_create_users.rb
|
|
209
|
+
- test/dummy/tmp/generators/db/migrate/20150105043654_devise_token_auth_create_users.rb
|
|
210
210
|
- test/dummy/tmp/restart.txt
|
|
211
211
|
- test/fixtures/evil_users.yml
|
|
212
212
|
- test/fixtures/mangs.yml
|
|
@@ -325,10 +325,10 @@ test_files:
|
|
|
325
325
|
- test/dummy/public/favicon.ico
|
|
326
326
|
- test/dummy/Rakefile
|
|
327
327
|
- test/dummy/README.rdoc
|
|
328
|
+
- test/dummy/tmp/generators/app/controllers/application_controller.rb
|
|
328
329
|
- test/dummy/tmp/generators/app/models/user.rb
|
|
329
330
|
- test/dummy/tmp/generators/config/initializers/devise_token_auth.rb
|
|
330
|
-
- test/dummy/tmp/generators/
|
|
331
|
-
- test/dummy/tmp/generators/db/migrate/20150105021617_devise_token_auth_create_users.rb
|
|
331
|
+
- test/dummy/tmp/generators/db/migrate/20150105043654_devise_token_auth_create_users.rb
|
|
332
332
|
- test/dummy/tmp/restart.txt
|
|
333
333
|
- test/fixtures/evil_users.yml
|
|
334
334
|
- test/fixtures/mangs.yml
|