devise_token_auth 0.1.14 → 0.1.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/devise_token_auth/auth_controller.rb +12 -0
- data/app/models/user.rb +7 -2
- data/app/views/layouts/omniauth_response.html.erb +24 -7
- data/config/routes.rb +2 -1
- data/lib/devise_token_auth/version.rb +1 -1
- data/test/dummy/config/application.yml +2 -2
- data/test/dummy/config/environments/development.rb +1 -1
- data/test/dummy/config/initializers/figaro.rb +1 -0
- data/test/dummy/config/initializers/omniauth.rb +4 -1
- data/test/dummy/config/spring.rb +1 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +4645 -0
- data/test/dummy/log/test.log +3051 -0
- data/test/dummy/tmp/restart.txt +0 -0
- data/test/fixtures/users.yml +0 -1
- metadata +8 -2
File without changes
|
data/test/fixtures/users.yml
CHANGED
@@ -13,7 +13,6 @@ duplicate_email_facebook_user:
|
|
13
13
|
email: "<%= @fb_email %>"
|
14
14
|
provider: 'facebook'
|
15
15
|
confirmed_at: '<% 2.weeks.ago %>'
|
16
|
-
confirm_success_url: '<%= Faker::Internet.url %>'
|
17
16
|
encrypted_password: <%= User.new.send(:password_digest, 'secret123') %>
|
18
17
|
|
19
18
|
<% @unconfirmed_email = Faker::Internet.email %>
|
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.15
|
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-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -130,6 +130,7 @@ files:
|
|
130
130
|
- test/dummy/config/initializers/assets.rb
|
131
131
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
132
132
|
- test/dummy/config/initializers/cookies_serializer.rb
|
133
|
+
- test/dummy/config/initializers/figaro.rb
|
133
134
|
- test/dummy/config/initializers/filter_parameter_logging.rb
|
134
135
|
- test/dummy/config/initializers/inflections.rb
|
135
136
|
- test/dummy/config/initializers/mime_types.rb
|
@@ -139,6 +140,7 @@ files:
|
|
139
140
|
- test/dummy/config/locales/en.yml
|
140
141
|
- test/dummy/config/routes.rb
|
141
142
|
- test/dummy/config/secrets.yml
|
143
|
+
- test/dummy/config/spring.rb
|
142
144
|
- test/dummy/db/development.sqlite3
|
143
145
|
- test/dummy/db/migrate/20140705000006_devise_token_auth_create_users.devise_token_auth.rb
|
144
146
|
- test/dummy/db/schema.rb
|
@@ -149,6 +151,7 @@ files:
|
|
149
151
|
- test/dummy/public/422.html
|
150
152
|
- test/dummy/public/500.html
|
151
153
|
- test/dummy/public/favicon.ico
|
154
|
+
- test/dummy/tmp/restart.txt
|
152
155
|
- test/fixtures/users.yml
|
153
156
|
- test/integration/navigation_test.rb
|
154
157
|
- test/lib/generators/devise_token_auth/devise_token_auth_generator_test.rb
|
@@ -202,6 +205,7 @@ test_files:
|
|
202
205
|
- test/dummy/config/initializers/assets.rb
|
203
206
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
204
207
|
- test/dummy/config/initializers/cookies_serializer.rb
|
208
|
+
- test/dummy/config/initializers/figaro.rb
|
205
209
|
- test/dummy/config/initializers/filter_parameter_logging.rb
|
206
210
|
- test/dummy/config/initializers/inflections.rb
|
207
211
|
- test/dummy/config/initializers/mime_types.rb
|
@@ -211,6 +215,7 @@ test_files:
|
|
211
215
|
- test/dummy/config/locales/en.yml
|
212
216
|
- test/dummy/config/routes.rb
|
213
217
|
- test/dummy/config/secrets.yml
|
218
|
+
- test/dummy/config/spring.rb
|
214
219
|
- test/dummy/config.ru
|
215
220
|
- test/dummy/db/development.sqlite3
|
216
221
|
- test/dummy/db/migrate/20140705000006_devise_token_auth_create_users.devise_token_auth.rb
|
@@ -224,6 +229,7 @@ test_files:
|
|
224
229
|
- test/dummy/public/favicon.ico
|
225
230
|
- test/dummy/Rakefile
|
226
231
|
- test/dummy/README.rdoc
|
232
|
+
- test/dummy/tmp/restart.txt
|
227
233
|
- test/fixtures/users.yml
|
228
234
|
- test/integration/navigation_test.rb
|
229
235
|
- test/lib/generators/devise_token_auth/devise_token_auth_generator_test.rb
|