Class: ScaffoldLogic::Generators::ScaffoldGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- ScaffoldLogic::Generators::ScaffoldGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/scaffold_logic/scaffold/scaffold_generator.rb
Instance Method Summary collapse
- #create_controller ⇒ Object
- #create_migration ⇒ Object
- #create_model ⇒ Object
-
#initialize(*args, &block) ⇒ ScaffoldGenerator
constructor
A new instance of ScaffoldGenerator.
Constructor Details
#initialize(*args, &block) ⇒ ScaffoldGenerator
Returns a new instance of ScaffoldGenerator.
25 26 27 28 29 30 31 32 33 34 35 36 37 38 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 |
# File 'lib/generators/scaffold_logic/scaffold/scaffold_generator.rb', line 25 def initialize(*args, &block) super @controller_actions = [] @model_attributes = [] @skip_model = .skip_model? @invert_actions = .invert? @mongoid = .mongoid args_for_c_m.each do |arg| if arg == '!' @invert_actions = true elsif arg.include?(':') @model_attributes << Rails::Generators::GeneratedAttribute.new(*arg.split(':')) else @controller_actions << arg @controller_actions << 'create' if arg == 'new' @controller_actions << 'update' if arg == 'edit' end end @controller_actions.uniq! @model_attributes.uniq! if @invert_actions || @controller_actions.empty? @controller_actions = all_actions - @controller_actions end if @model_attributes.empty? @skip_model = true # skip model if no attributes if model_exists? model_columns_for_attributes.each do |column| @model_attributes << Rails::Generators::GeneratedAttribute.new(column.name.to_s, column.type.to_s) end else @model_attributes << Rails::Generators::GeneratedAttribute.new('name', 'string') end end end |
Instance Method Details
#create_controller ⇒ Object
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'lib/generators/scaffold_logic/scaffold/scaffold_generator.rb', line 82 def create_controller unless .skip_controller? template 'controller.rb', "app/controllers/#{plural_name}_controller.rb" controller_actions.each do |action| if %w[index show new edit].include?(action) # Actions with templates template "views/#{view_language}/#{action}.html.#{view_language}", "app/views/#{plural_name}/#{action}.html.#{view_language}" end end if form_partial? template "views/#{view_language}/_form.html.#{view_language}", "app/views/#{plural_name}/_form.html.#{view_language}" end route "resources #{plural_name.to_sym.inspect}" template "tests/#{test_framework}/controller.rb", "spec/controllers/#{plural_name}_controller_spec.rb" end end |
#create_migration ⇒ Object
76 77 78 79 80 |
# File 'lib/generators/scaffold_logic/scaffold/scaffold_generator.rb', line 76 def create_migration unless @skip_model || .skip_migration? || @mongoid migration_template 'migration.rb', "db/migrate/create_#{plural_name}.rb" end end |
#create_model ⇒ Object
65 66 67 68 69 70 71 72 73 74 |
# File 'lib/generators/scaffold_logic/scaffold/scaffold_generator.rb', line 65 def create_model unless @skip_model if @mongoid template 'mongoid_model.rb', "app/models/#{singular_name}.rb" else template 'model.rb', "app/models/#{singular_name}.rb" end template "tests/rspec/model.rb", "spec/models/#{singular_name}_spec.rb" end end |