devise_token_auth 0.1.27.beta1 → 0.1.27.beta2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,8 @@
1
+ class ApplicationController < ActionController::Base
2
+ include DeviseTokenAuth::Concerns::SetUserByToken
3
+ respond_to :json
4
+
5
+ def whatever
6
+ 'whatever'
7
+ end
8
+ end
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.27.beta1
4
+ version: 0.1.27.beta2
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-08-26 00:00:00.000000000 Z
11
+ date: 2014-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -166,6 +166,7 @@ files:
166
166
  - test/dummy/db/development.sqlite3
167
167
  - test/dummy/db/migrate/20140715061447_devise_token_auth_create_users.rb
168
168
  - test/dummy/db/migrate/20140715061805_devise_token_auth_create_mangs.rb
169
+ - test/dummy/db/migrate/20140829044006_add_operating_thetan_to_user.rb
169
170
  - test/dummy/db/schema.rb
170
171
  - test/dummy/db/test.sqlite3
171
172
  - test/dummy/log/development.log
@@ -174,10 +175,10 @@ files:
174
175
  - test/dummy/public/422.html
175
176
  - test/dummy/public/500.html
176
177
  - test/dummy/public/favicon.ico
178
+ - test/dummy/tmp/generators/app/controllers/application_controller.rb
177
179
  - test/dummy/tmp/generators/app/models/user.rb
178
180
  - test/dummy/tmp/generators/config/initializers/devise_token_auth.rb
179
- - test/dummy/tmp/generators/config/routes.rb
180
- - test/dummy/tmp/generators/db/migrate/20140826175100_devise_token_auth_create_users.rb
181
+ - test/dummy/tmp/generators/db/migrate/20140829050614_devise_token_auth_create_users.rb
181
182
  - test/dummy/tmp/restart.txt
182
183
  - test/fixtures/mangs.yml
183
184
  - test/fixtures/users.yml
@@ -257,6 +258,7 @@ test_files:
257
258
  - test/dummy/db/development.sqlite3
258
259
  - test/dummy/db/migrate/20140715061447_devise_token_auth_create_users.rb
259
260
  - test/dummy/db/migrate/20140715061805_devise_token_auth_create_mangs.rb
261
+ - test/dummy/db/migrate/20140829044006_add_operating_thetan_to_user.rb
260
262
  - test/dummy/db/schema.rb
261
263
  - test/dummy/db/test.sqlite3
262
264
  - test/dummy/log/development.log
@@ -267,10 +269,10 @@ test_files:
267
269
  - test/dummy/public/favicon.ico
268
270
  - test/dummy/Rakefile
269
271
  - test/dummy/README.rdoc
272
+ - test/dummy/tmp/generators/app/controllers/application_controller.rb
270
273
  - test/dummy/tmp/generators/app/models/user.rb
271
274
  - test/dummy/tmp/generators/config/initializers/devise_token_auth.rb
272
- - test/dummy/tmp/generators/config/routes.rb
273
- - test/dummy/tmp/generators/db/migrate/20140826175100_devise_token_auth_create_users.rb
275
+ - test/dummy/tmp/generators/db/migrate/20140829050614_devise_token_auth_create_users.rb
274
276
  - test/dummy/tmp/restart.txt
275
277
  - test/fixtures/mangs.yml
276
278
  - test/fixtures/users.yml
@@ -1,4 +0,0 @@
1
- Rails.application.routes.draw do
2
- mount_devise_token_auth_for 'User', at: '/auth'
3
- patch '/chong', to: 'bong#index'
4
- end