devise_token_auth 0.1.31.beta7 → 0.1.31.beta8
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/concerns/set_user_by_token.rb +1 -1
- data/app/models/devise_token_auth/concerns/user.rb +1 -1
- data/lib/devise_token_auth/version.rb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +20386 -0
- data/test/dummy/tmp/generators/config/routes.rb +0 -5
- data/test/dummy/tmp/generators/db/migrate/{20150107101042_devise_token_auth_create_users.rb → 20150107103347_devise_token_auth_create_users.rb} +0 -0
- metadata +3 -7
- data/test/dummy/tmp/generators/app/models/mang.rb +0 -7
- data/test/dummy/tmp/generators/db/migrate/20150107101042_devise_token_auth_create_mangs.rb +0 -54
File without changes
|
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.31.
|
4
|
+
version: 0.1.31.beta8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lynn Hurley
|
@@ -204,12 +204,10 @@ files:
|
|
204
204
|
- test/dummy/public/422.html
|
205
205
|
- test/dummy/public/500.html
|
206
206
|
- test/dummy/public/favicon.ico
|
207
|
-
- test/dummy/tmp/generators/app/models/mang.rb
|
208
207
|
- test/dummy/tmp/generators/app/models/user.rb
|
209
208
|
- test/dummy/tmp/generators/config/initializers/devise_token_auth.rb
|
210
209
|
- test/dummy/tmp/generators/config/routes.rb
|
211
|
-
- test/dummy/tmp/generators/db/migrate/
|
212
|
-
- test/dummy/tmp/generators/db/migrate/20150107101042_devise_token_auth_create_users.rb
|
210
|
+
- test/dummy/tmp/generators/db/migrate/20150107103347_devise_token_auth_create_users.rb
|
213
211
|
- test/dummy/tmp/restart.txt
|
214
212
|
- test/fixtures/evil_users.yml
|
215
213
|
- test/fixtures/mangs.yml
|
@@ -329,12 +327,10 @@ test_files:
|
|
329
327
|
- test/dummy/public/favicon.ico
|
330
328
|
- test/dummy/Rakefile
|
331
329
|
- test/dummy/README.rdoc
|
332
|
-
- test/dummy/tmp/generators/app/models/mang.rb
|
333
330
|
- test/dummy/tmp/generators/app/models/user.rb
|
334
331
|
- test/dummy/tmp/generators/config/initializers/devise_token_auth.rb
|
335
332
|
- test/dummy/tmp/generators/config/routes.rb
|
336
|
-
- test/dummy/tmp/generators/db/migrate/
|
337
|
-
- test/dummy/tmp/generators/db/migrate/20150107101042_devise_token_auth_create_users.rb
|
333
|
+
- test/dummy/tmp/generators/db/migrate/20150107103347_devise_token_auth_create_users.rb
|
338
334
|
- test/dummy/tmp/restart.txt
|
339
335
|
- test/fixtures/evil_users.yml
|
340
336
|
- test/fixtures/mangs.yml
|
@@ -1,54 +0,0 @@
|
|
1
|
-
class DeviseTokenAuthCreateMangs < ActiveRecord::Migration
|
2
|
-
def change
|
3
|
-
create_table(:mangs) do |t|
|
4
|
-
## Required
|
5
|
-
t.string :provider, :null => false
|
6
|
-
t.string :uid, :null => false, :default => ""
|
7
|
-
|
8
|
-
## Database authenticatable
|
9
|
-
t.string :encrypted_password, :null => false, :default => ""
|
10
|
-
|
11
|
-
## Recoverable
|
12
|
-
t.string :reset_password_token
|
13
|
-
t.datetime :reset_password_sent_at
|
14
|
-
|
15
|
-
## Rememberable
|
16
|
-
t.datetime :remember_created_at
|
17
|
-
|
18
|
-
## Trackable
|
19
|
-
t.integer :sign_in_count, :default => 0, :null => false
|
20
|
-
t.datetime :current_sign_in_at
|
21
|
-
t.datetime :last_sign_in_at
|
22
|
-
t.string :current_sign_in_ip
|
23
|
-
t.string :last_sign_in_ip
|
24
|
-
|
25
|
-
## Confirmable
|
26
|
-
t.string :confirmation_token
|
27
|
-
t.datetime :confirmed_at
|
28
|
-
t.datetime :confirmation_sent_at
|
29
|
-
t.string :unconfirmed_email # Only if using reconfirmable
|
30
|
-
|
31
|
-
## Lockable
|
32
|
-
# t.integer :failed_attempts, :default => 0, :null => false # Only if lock strategy is :failed_attempts
|
33
|
-
# t.string :unlock_token # Only if unlock strategy is :email or :both
|
34
|
-
# t.datetime :locked_at
|
35
|
-
|
36
|
-
## User Info
|
37
|
-
t.string :name
|
38
|
-
t.string :nickname
|
39
|
-
t.string :image
|
40
|
-
t.string :email
|
41
|
-
|
42
|
-
## Tokens
|
43
|
-
t.text :tokens
|
44
|
-
|
45
|
-
t.timestamps
|
46
|
-
end
|
47
|
-
|
48
|
-
add_index :mangs, :email
|
49
|
-
add_index :mangs, [:uid, :provider], :unique => true
|
50
|
-
add_index :mangs, :reset_password_token, :unique => true
|
51
|
-
# add_index :mangs, :confirmation_token, :unique => true
|
52
|
-
# add_index :mangs, :unlock_token, :unique => true
|
53
|
-
end
|
54
|
-
end
|