Class: ActiveRecord::Generators::DeviseGenerator
Instance Method Summary
collapse
#model_contents, #needs_attr_accessible?, #rails_3?, #strong_parameters_enabled?
Instance Method Details
#copy_devise_migration ⇒ Object
12
13
14
15
16
17
18
|
# File 'lib/generators/active_record/devise_generator.rb', line 12
def copy_devise_migration
if (behavior == :invoke && model_exists?) || (behavior == :revoke && migration_exists?(table_name))
migration_template "migration_existing.rb", "db/migrate/add_devise_to_#{table_name}.rb"
else
migration_template "migration.rb", "db/migrate/devise_create_#{table_name}.rb"
end
end
|
#generate_model ⇒ Object
20
21
22
|
# File 'lib/generators/active_record/devise_generator.rb', line 20
def generate_model
invoke "active_record:model", [name], migration: false unless model_exists? && behavior == :invoke
end
|
#inet? ⇒ Boolean
77
78
79
|
# File 'lib/generators/active_record/devise_generator.rb', line 77
def inet?
rails4? && postgresql?
end
|
#inject_devise_content ⇒ Object
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# File 'lib/generators/active_record/devise_generator.rb', line 24
def inject_devise_content
content = model_contents
class_path = if namespaced?
class_name.to_s.split("::")
else
[class_name]
end
indent_depth = class_path.size - 1
content = content.split("\n").map { |line| " " * indent_depth + line } .join("\n") << "\n"
inject_into_class(model_path, class_path.last, content) if model_exists?
end
|
#ip_column ⇒ Object
72
73
74
75
|
# File 'lib/generators/active_record/devise_generator.rb', line 72
def ip_column
"%-8s" % (inet? ? "inet" : "string")
end
|
#migration_data ⇒ Object
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# File 'lib/generators/active_record/devise_generator.rb', line 39
def migration_data
<<RUBY
## Database authenticatable
t.string :email, null: false, default: ""
t.string :encrypted_password, null: false, default: ""
## Recoverable
t.string :reset_password_token
t.datetime :reset_password_sent_at
## Rememberable
t.datetime :remember_created_at
## Trackable
t.integer :sign_in_count, default: 0, null: false
t.datetime :current_sign_in_at
t.datetime :last_sign_in_at
t.#{ip_column} :current_sign_in_ip
t.#{ip_column} :last_sign_in_ip
## Confirmable
# t.string :confirmation_token
# t.datetime :confirmed_at
# t.datetime :confirmation_sent_at
# t.string :unconfirmed_email # Only if using reconfirmable
## Lockable
# t.integer :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts
# t.string :unlock_token # Only if unlock strategy is :email or :both
# t.datetime :locked_at
RUBY
end
|
#postgresql? ⇒ Boolean
85
86
87
88
|
# File 'lib/generators/active_record/devise_generator.rb', line 85
def postgresql?
config = ActiveRecord::Base.configurations[Rails.env]
config && config['adapter'] == 'postgresql'
end
|
#rails4? ⇒ Boolean
81
82
83
|
# File 'lib/generators/active_record/devise_generator.rb', line 81
def rails4?
Rails.version.start_with? '4'
end
|