class Haml::Generators::EnquiryControllerGenerator
Public Class Methods
new(args, *options)
click to toggle source
Calls superclass method
# File lib/generators/haml/enquiry_controller/enquiry_controller_generator.rb, line 18 def initialize(args, *options) super parse_filter_attributes! end
Public Instance Methods
create_template_file()
click to toggle source
# File lib/generators/haml/enquiry_controller/enquiry_controller_generator.rb, line 23 def create_template_file template 'index.html.haml', File.join('app/views', class_path, "#{file_name}_enquiry", "#{action_name}.html.haml") end
Protected Instance Methods
parse_filter_attributes!()
click to toggle source
# File lib/generators/haml/enquiry_controller/enquiry_controller_generator.rb, line 29 def parse_filter_attributes! self.filter_attributes = (filter_attributes || []).map do |attribute| # expected in the form "name", "name:type" or "name:type:required" parts = attribute.split(':') name = parts.first.underscore type = ((parts.length > 1) ? parts[1] : 'string') additional_options = case type.to_sym when :integer, :decimal, :boolean, :date, :time, :datetime ", :as => :#{type}" when :enum ", :collection => #{name.titleize}Enum.collection" when :model ", :collection => #{name.titleize}.all" else '' end OpenStruct.new( :name => name, :type => type, :inject_options => additional_options ) end end