Sha256: fe40d6570c290ee27485a0673f114a44b174672a89ce54ad3950690dbae70be1
Contents?: true
Size: 726 Bytes
Versions: 5
Compression:
Stored size: 726 Bytes
Contents
module Rarocrud class BrancoGenerator < Rails::Generators::NamedBase source_root File.expand_path('../templates', __FILE__) attr_reader :teste argument :acao, type: :string, default: [], banner: "action action" def copy_initializer_file @model = Module.const_get(file_name.camelize) @action = acao template 'template.rb', "app/views/#{@model.name.pluralize.underscore.to_sym}/_template.html.erb", @model,@action template 'action.rb', "app/views/#{@model.name.pluralize.underscore.to_sym}/#{@action}.html.erb", @model,@action template 'action_partial.rb', "app/views/#{@model.name.pluralize.underscore.to_sym}/_#{@action}.html.erb", @model,@action end end end
Version data entries
5 entries across 5 versions & 1 rubygems