Class: Dust::Generators::ScaffoldGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/dust/scaffold/scaffold_generator.rb
Instance Method Summary collapse
- #add_gems ⇒ Object
- #create_controller ⇒ Object
- #create_migration ⇒ Object
- #create_model ⇒ Object
-
#initialize(*args, &block) ⇒ ScaffoldGenerator
constructor
A new instance of ScaffoldGenerator.
Methods inherited from Base
Constructor Details
#initialize(*args, &block) ⇒ ScaffoldGenerator
Returns a new instance of ScaffoldGenerator.
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 64 |
# File 'lib/generators/dust/scaffold/scaffold_generator.rb', line 26 def initialize(*args, &block) super @controller_actions = [] @model_attributes = [] @skip_model = .skip_model? @invert_actions = .invert? 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
#add_gems ⇒ Object
66 67 68 |
# File 'lib/generators/dust/scaffold/scaffold_generator.rb', line 66 def add_gems gem "mocha", :group => :test unless File.read(destination_path("Gemfile")).include? "mocha" end |
#create_controller ⇒ Object
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'lib/generators/dust/scaffold/scaffold_generator.rb', line 89 def create_controller unless .skip_controller? template 'controller.rb', "app/controllers/app/#{plural_name}_controller.rb" #template 'helper.rb', "app/helpers/#{plural_name}_helper.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/app/#{plural_name}/#{action}.html.#{view_language}" end end template "views/#{view_language}/_search.html.#{view_language}", "app/views/app/#{plural_name}/_search.html.#{view_language}" if form_partial? template "views/#{view_language}/_form.html.#{view_language}", "app/views/app/#{plural_name}/_form.html.#{view_language}" end unless [:skip_frontend] template "view_controller.rb", "app/controllers/front_end/app/#{plural_name}_controller.rb" route("match \"all-#{plural_name}\" => \"front_end/app/#{plural_name}#index\", :as => :front_end_app_#{plural_name}") route("match \"#{singular_name}/:filename\" => \"front_end/app/#{plural_name}#show\", :as => :front_end_app_#{singular_name}") template "views/front_end/#{view_language}/index.html.#{view_language}", "app/views/front_end/app/#{plural_name}/index.html.#{view_language}" template "views/front_end/#{view_language}/show.html.#{view_language}", "app/views/front_end/app/#{plural_name}/show.html.#{view_language}" end route "namespace :app do resources #{plural_name.to_sym.inspect} end" #if test_framework == :rspec #template "tests/#{test_framework}/controller.rb", "spec/controllers/#{plural_name}_controller_spec.rb" #else #template "tests/#{test_framework}/controller.rb", "test/functional/#{plural_name}_controller_test.rb" #end end end |
#create_migration ⇒ Object
83 84 85 86 87 |
# File 'lib/generators/dust/scaffold/scaffold_generator.rb', line 83 def create_migration unless @skip_model || .skip_migration? migration_template 'migration.rb', "db/migrate/create_#{plural_name}.rb" end end |
#create_model ⇒ Object
70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/generators/dust/scaffold/scaffold_generator.rb', line 70 def create_model unless @skip_model template 'model.rb', "app/models/app/#{singular_name}.rb" #if test_framework == :rspec #template "tests/rspec/model.rb", "spec/models/#{singular_name}_spec.rb" #template 'fixtures.yml', "spec/fixtures/#{plural_name}.yml" #else #template "tests/#{test_framework}/model.rb", "test/unit/#{singular_name}_test.rb" #template 'fixtures.yml', "test/fixtures/#{plural_name}.yml" #end end end |