devise_token_auth 0.1.26 → 0.1.27.beta1

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,4 @@
1
+ Rails.application.routes.draw do
2
+ mount_devise_token_auth_for 'User', at: '/auth'
3
+ patch '/chong', to: 'bong#index'
4
+ 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.26
4
+ version: 0.1.27.beta1
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-23 00:00:00.000000000 Z
11
+ date: 2014-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -125,6 +125,7 @@ files:
125
125
  - test/controllers/devise_token_auth/sessions_controller_test.rb
126
126
  - test/dummy/README.rdoc
127
127
  - test/dummy/Rakefile
128
+ - test/dummy/app/assets/images/logo.jpg
128
129
  - test/dummy/app/assets/images/omniauth-provider-settings.png
129
130
  - test/dummy/app/assets/javascripts/application.js
130
131
  - test/dummy/app/assets/stylesheets/application.css
@@ -173,10 +174,10 @@ files:
173
174
  - test/dummy/public/422.html
174
175
  - test/dummy/public/500.html
175
176
  - test/dummy/public/favicon.ico
176
- - test/dummy/tmp/generators/app/controllers/application_controller.rb
177
177
  - test/dummy/tmp/generators/app/models/user.rb
178
178
  - test/dummy/tmp/generators/config/initializers/devise_token_auth.rb
179
- - test/dummy/tmp/generators/db/migrate/20140823192509_devise_token_auth_create_users.rb
179
+ - test/dummy/tmp/generators/config/routes.rb
180
+ - test/dummy/tmp/generators/db/migrate/20140826175100_devise_token_auth_create_users.rb
180
181
  - test/dummy/tmp/restart.txt
181
182
  - test/fixtures/mangs.yml
182
183
  - test/fixtures/users.yml
@@ -199,9 +200,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
199
200
  version: '0'
200
201
  required_rubygems_version: !ruby/object:Gem::Requirement
201
202
  requirements:
202
- - - ">="
203
+ - - ">"
203
204
  - !ruby/object:Gem::Version
204
- version: '0'
205
+ version: 1.3.1
205
206
  requirements: []
206
207
  rubyforge_project:
207
208
  rubygems_version: 2.2.2
@@ -215,6 +216,7 @@ test_files:
215
216
  - test/controllers/devise_token_auth/passwords_controller_test.rb
216
217
  - test/controllers/devise_token_auth/registrations_controller_test.rb
217
218
  - test/controllers/devise_token_auth/sessions_controller_test.rb
219
+ - test/dummy/app/assets/images/logo.jpg
218
220
  - test/dummy/app/assets/images/omniauth-provider-settings.png
219
221
  - test/dummy/app/assets/javascripts/application.js
220
222
  - test/dummy/app/assets/stylesheets/application.css
@@ -265,10 +267,10 @@ test_files:
265
267
  - test/dummy/public/favicon.ico
266
268
  - test/dummy/Rakefile
267
269
  - test/dummy/README.rdoc
268
- - test/dummy/tmp/generators/app/controllers/application_controller.rb
269
270
  - test/dummy/tmp/generators/app/models/user.rb
270
271
  - test/dummy/tmp/generators/config/initializers/devise_token_auth.rb
271
- - test/dummy/tmp/generators/db/migrate/20140823192509_devise_token_auth_create_users.rb
272
+ - test/dummy/tmp/generators/config/routes.rb
273
+ - test/dummy/tmp/generators/db/migrate/20140826175100_devise_token_auth_create_users.rb
272
274
  - test/dummy/tmp/restart.txt
273
275
  - test/fixtures/mangs.yml
274
276
  - test/fixtures/users.yml
@@ -1,8 +0,0 @@
1
- class ApplicationController < ActionController::Base
2
- include DeviseTokenAuth::Concerns::SetUserByToken
3
- respond_to :json
4
-
5
- def whatever
6
- 'whatever'
7
- end
8
- end