devise_token_auth 0.1.29.beta1 → 0.1.29.beta2

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.
@@ -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,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.29.beta1
4
+ version: 0.1.29.beta2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lynn Hurley
@@ -197,10 +197,10 @@ files:
197
197
  - test/dummy/public/422.html
198
198
  - test/dummy/public/500.html
199
199
  - test/dummy/public/favicon.ico
200
+ - test/dummy/tmp/generators/app/controllers/application_controller.rb
200
201
  - test/dummy/tmp/generators/app/models/user.rb
201
202
  - test/dummy/tmp/generators/config/initializers/devise_token_auth.rb
202
- - test/dummy/tmp/generators/config/routes.rb
203
- - test/dummy/tmp/generators/db/migrate/20140930001137_devise_token_auth_create_users.rb
203
+ - test/dummy/tmp/generators/db/migrate/20140930041823_devise_token_auth_create_users.rb
204
204
  - test/dummy/tmp/restart.txt
205
205
  - test/fixtures/evil_users.yml
206
206
  - test/fixtures/mangs.yml
@@ -311,10 +311,10 @@ test_files:
311
311
  - test/dummy/public/favicon.ico
312
312
  - test/dummy/Rakefile
313
313
  - test/dummy/README.rdoc
314
+ - test/dummy/tmp/generators/app/controllers/application_controller.rb
314
315
  - test/dummy/tmp/generators/app/models/user.rb
315
316
  - test/dummy/tmp/generators/config/initializers/devise_token_auth.rb
316
- - test/dummy/tmp/generators/config/routes.rb
317
- - test/dummy/tmp/generators/db/migrate/20140930001137_devise_token_auth_create_users.rb
317
+ - test/dummy/tmp/generators/db/migrate/20140930041823_devise_token_auth_create_users.rb
318
318
  - test/dummy/tmp/restart.txt
319
319
  - test/fixtures/evil_users.yml
320
320
  - test/fixtures/mangs.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