Module: Devise::Generators::OrmHelpers

Included in:
ActiveRecord::Generators::DeviseGenerator, Mongoid::Generators::DeviseGenerator
Defined in:
lib/generators/devise/orm_helpers.rb

Instance Method Summary collapse

Instance Method Details

#migration_exists?(table_name) ⇒ Boolean

Returns:

  • (Boolean)


18
19
20
# File 'lib/generators/devise/orm_helpers.rb', line 18

def migration_exists?(table_name)
  Dir.glob("#{File.join(destination_root, migration_path)}/[0-9]*_*.rb").grep(/\d+_add_devise_to_#{table_name}.rb$/).first
end

#migration_pathObject



22
23
24
# File 'lib/generators/devise/orm_helpers.rb', line 22

def migration_path
  @migration_path ||= File.join("db", "migrate")
end

#model_contentsObject



4
5
6
7
8
9
10
11
12
# File 'lib/generators/devise/orm_helpers.rb', line 4

def model_contents
<<-CONTENT
  # Include default devise modules. Others available are:
  # :token_authenticatable, :encryptable, :confirmable, :lockable, :timeoutable and :omniauthable
  devise :database_authenticatable, :registerable,
   :recoverable, :rememberable, :trackable, :validatable

CONTENT
end

#model_exists?Boolean

Returns:

  • (Boolean)


14
15
16
# File 'lib/generators/devise/orm_helpers.rb', line 14

def model_exists?
  File.exists?(File.join(destination_root, model_path))
end

#model_pathObject



26
27
28
# File 'lib/generators/devise/orm_helpers.rb', line 26

def model_path
  @model_path ||= File.join("app", "models", "#{file_path}.rb")
end