module RubyGallery::Generators::OrmHelpers
Public Instance Methods
controller_exists?()
click to toggle source
# File lib/generators/ruby_gallery/orm_helpers.rb, line 19 def controller_exists? File.exists?(File.join(destination_root, controller_path)) end
controller_path()
click to toggle source
# File lib/generators/ruby_gallery/orm_helpers.rb, line 39 def controller_path @controller_path ||= File.join("app", "controllers", "#{table_name}_controller.rb") end
migration_add_columns_exists?(table_name)
click to toggle source
# File lib/generators/ruby_gallery/orm_helpers.rb, line 27 def migration_add_columns_exists?(table_name) Dir.glob("#{File.join(destination_root, migration_path)}/[0-9]*_*.rb").grep(/\d+_ruby_gallery_add_columns_to_#{table_name}.rb$/).first end
migration_exists?(table_name)
click to toggle source
# File lib/generators/ruby_gallery/orm_helpers.rb, line 23 def migration_exists?(table_name) Dir.glob("#{File.join(destination_root, migration_path)}/[0-9]*_*.rb").grep(/\d+_ruby_gallery_create_#{table_name}.rb$/).first end
migration_path()
click to toggle source
# File lib/generators/ruby_gallery/orm_helpers.rb, line 31 def migration_path @migration_path ||= File.join("db", "migrate") end
model_contents()
click to toggle source
# File lib/generators/ruby_gallery/orm_helpers.rb, line 4 def model_contents <<-CONTENT # Include default devise modules. Others available are: # :token_authenticatable, :confirmable, # :lockable, :timeoutable and :omniauthable # devise :database_authenticatable, :registerable, # :recoverable, :rememberable, :trackable, :validatable # CONTENT end
model_exists?()
click to toggle source
# File lib/generators/ruby_gallery/orm_helpers.rb, line 15 def model_exists? File.exists?(File.join(destination_root, model_path)) end
model_path()
click to toggle source
# File lib/generators/ruby_gallery/orm_helpers.rb, line 35 def model_path @model_path ||= File.join("app", "models", "#{file_path}.rb") end