Class: Step6RailsStructureModels
- Inherits:
-
KDomain::DomainModel::Step
- Object
- KDomain::DomainModel::Step
- Step6RailsStructureModels
- Defined in:
- lib/k_domain/domain_model/transform_steps/step6_rails_structure_models.rb
Overview
Locate rails model files
Instance Attribute Summary
Attributes inherited from KDomain::DomainModel::Step
Instance Method Summary collapse
Methods inherited from KDomain::DomainModel::Step
#camel, #database, #database=, #database_foreign_keys, #database_tables, #domain, #domain_models, #find_foreign_table, #find_rails_structure_models, #find_table_for_model, #guard, #initialize, #investigate, #issues, #rails_resource, #rails_resource_controllers, #rails_resource_models, #rails_resource_models=, #rails_resource_routes, #rails_resource_routes=, #rails_structure, #rails_structure_controllers, #rails_structure_controllers=, #rails_structure_models, #rails_structure_models=, run, #table_name_exist?, #warning, #write
Constructor Details
This class inherits a constructor from KDomain::DomainModel::Step
Instance Method Details
#call ⇒ Object
5 6 7 8 9 10 11 12 13 14 |
# File 'lib/k_domain/domain_model/transform_steps/step6_rails_structure_models.rb', line 5 def call raise 'Rails model path not supplied' unless opts[:model_path] # THIS IS NOT WORKING YET self.rails_structure_models = rails_resource_models.map do |resource| process_resource(OpenStruct.new(resource)) end attach_behavior_and_functions end |