devise_token_auth 0.1.6 → 0.1.7
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/auth_controller.rb +5 -4
- data/app/controllers/devise_token_auth/confirmations_controller.rb +9 -11
- data/app/models/user.rb +8 -1
- data/app/views/confirmable/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/confirmable/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/confirmable/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/devise_token_auth/omniauth_failure.html.erb +2 -0
- data/db/migrate/20140628234942_devise_token_auth_create_users.rb +1 -1
- data/lib/devise_token_auth/version.rb +1 -1
- data/test/dummy/config/application.rb +2 -2
- data/test/dummy/config/environments/development.rb +6 -1
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/{20140629011345_devise_token_auth_create_users.devise_token_auth.rb → 20140705000006_devise_token_auth_create_users.devise_token_auth.rb} +4 -4
- data/test/dummy/db/schema.rb +3 -2
- data/test/dummy/log/development.log +1488 -0
- metadata +8 -6
- data/test/dummy/tmp/pids/server.pid +0 -1
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: devise_token_auth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lynn Hurley
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-07-
|
11
|
+
date: 2014-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -85,6 +85,10 @@ files:
|
|
85
85
|
- app/controllers/devise_token_auth/sessions_controller.rb
|
86
86
|
- app/helpers/devise_token_auth/application_helper.rb
|
87
87
|
- app/models/user.rb
|
88
|
+
- app/views/confirmable/mailer/confirmation_instructions.html.erb
|
89
|
+
- app/views/confirmable/mailer/reset_password_instructions.html.erb
|
90
|
+
- app/views/confirmable/mailer/unlock_instructions.html.erb
|
91
|
+
- app/views/devise_token_auth/omniauth_failure.html.erb
|
88
92
|
- app/views/devise_token_auth/omniauth_success.html.erb
|
89
93
|
- app/views/layouts/omniauth_response.html.erb
|
90
94
|
- config/initializers/devise.rb
|
@@ -131,7 +135,7 @@ files:
|
|
131
135
|
- test/dummy/config/routes.rb
|
132
136
|
- test/dummy/config/secrets.yml
|
133
137
|
- test/dummy/db/development.sqlite3
|
134
|
-
- test/dummy/db/migrate/
|
138
|
+
- test/dummy/db/migrate/20140705000006_devise_token_auth_create_users.devise_token_auth.rb
|
135
139
|
- test/dummy/db/schema.rb
|
136
140
|
- test/dummy/db/test.sqlite3
|
137
141
|
- test/dummy/log/development.log
|
@@ -139,7 +143,6 @@ files:
|
|
139
143
|
- test/dummy/public/422.html
|
140
144
|
- test/dummy/public/500.html
|
141
145
|
- test/dummy/public/favicon.ico
|
142
|
-
- test/dummy/tmp/pids/server.pid
|
143
146
|
- test/integration/navigation_test.rb
|
144
147
|
- test/lib/generators/devise_token_auth/devise_token_auth_generator_test.rb
|
145
148
|
- test/test_helper.rb
|
@@ -200,7 +203,7 @@ test_files:
|
|
200
203
|
- test/dummy/config/secrets.yml
|
201
204
|
- test/dummy/config.ru
|
202
205
|
- test/dummy/db/development.sqlite3
|
203
|
-
- test/dummy/db/migrate/
|
206
|
+
- test/dummy/db/migrate/20140705000006_devise_token_auth_create_users.devise_token_auth.rb
|
204
207
|
- test/dummy/db/schema.rb
|
205
208
|
- test/dummy/db/test.sqlite3
|
206
209
|
- test/dummy/log/development.log
|
@@ -210,7 +213,6 @@ test_files:
|
|
210
213
|
- test/dummy/public/favicon.ico
|
211
214
|
- test/dummy/Rakefile
|
212
215
|
- test/dummy/README.rdoc
|
213
|
-
- test/dummy/tmp/pids/server.pid
|
214
216
|
- test/integration/navigation_test.rb
|
215
217
|
- test/lib/generators/devise_token_auth/devise_token_auth_generator_test.rb
|
216
218
|
- test/test_helper.rb
|
@@ -1 +0,0 @@
|
|
1
|
-
64836
|