Sha256: cbc409a49bb94d0effae02bdbf02d613d99610d4981002d648424c24c2e346c4
Contents?: true
Size: 1.41 KB
Versions: 1
Compression:
Stored size: 1.41 KB
Contents
module Fae class NestedIndexScaffoldGenerator < Fae::BaseGenerator source_root ::File.expand_path('../templates', __FILE__) def go generate_model generate_graphql_type generate_nested_index_controller_file generate_view_files add_route inject_nav_item end private def generate_nested_index_controller_file @attachments = @@attachments template "controllers/nested_index_scaffold_controller.rb", "app/controllers/#{options.namespace}/#{file_name.pluralize}_controller.rb" end def generate_view_files @toggle_attrs = set_toggle_attrs @form_attrs = set_form_attrs @association_names = @@association_names @attachments = @@attachments @has_position = @@has_position @display_field = @@display_field template "views/index_nested.html.#{options.template}", "app/views/#{options.namespace}/#{plural_file_name}/index.html.#{options.template}" template "views/_form_index_nested.html.#{options.template}", "app/views/#{options.namespace}/#{plural_file_name}/_form.html.#{options.template}" template "views/new_nested.html.#{options.template}", "app/views/#{options.namespace}/#{plural_file_name}/new.html.#{options.template}" template "views/edit_nested.html.#{options.template}", "app/views/#{options.namespace}/#{plural_file_name}/edit.html.#{options.template}" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fae-rails-3.0.0 | lib/generators/fae/nested_index_scaffold_generator.rb |