Class: ActiveRecord::Generators::ModelGenerator
- Inherits:
-
Base
- Object
- Rails::Generators::NamedBase
- Base
- ActiveRecord::Generators::ModelGenerator
- Defined in:
- lib/rails/generators/active_record/model/model_generator.rb
Overview
:nodoc:
Instance Method Summary collapse
- #accessible_attributes ⇒ Object
- #attributes_with_index ⇒ Object
-
#create_migration_file ⇒ Object
creates the migration file for the model.
- #create_model_file ⇒ Object
- #create_module_file ⇒ Object
Methods inherited from Base
Instance Method Details
#accessible_attributes ⇒ Object
37 38 39 |
# File 'lib/rails/generators/active_record/model/model_generator.rb', line 37 def accessible_attributes attributes.reject(&:reference?) end |
#attributes_with_index ⇒ Object
33 34 35 |
# File 'lib/rails/generators/active_record/model/model_generator.rb', line 33 def attributes_with_index attributes.select { |a| !a.reference? && a.has_index? } end |
#create_migration_file ⇒ Object
creates the migration file for the model.
18 19 20 21 22 |
# File 'lib/rails/generators/active_record/model/model_generator.rb', line 18 def create_migration_file return unless [:migration] && [:parent].nil? attributes.each { |a| a..delete(:index) if a.reference? && !a.has_index? } if [:indexes] == false migration_template "../../migration/templates/create_table_migration.rb", "db/migrate/create_#{table_name}.rb" end |
#create_model_file ⇒ Object
24 25 26 |
# File 'lib/rails/generators/active_record/model/model_generator.rb', line 24 def create_model_file template 'model.rb', File.join('app/models', class_path, "#{file_name}.rb") end |
#create_module_file ⇒ Object
28 29 30 31 |
# File 'lib/rails/generators/active_record/model/model_generator.rb', line 28 def create_module_file return if regular_class_path.empty? template 'module.rb', File.join('app/models', "#{class_path.join('/')}.rb") if behavior == :invoke end |