Sha256: 6af1d64fae8b4cbb3841d0001b91b4c347017633b751ed48d3a7479f43904277

Contents?: true

Size: 1.27 KB

Versions: 2

Compression:

Stored size: 1.27 KB

Contents

require 'rails_generator/generators/components/controller/controller_generator'

class CellGenerator < ControllerGenerator

  attr_reader :template_type

  def initialize(runtime_args, runtime_options = {})
    super
    @template_type = options[:haml] ? :haml : :erb
  end

  def manifest
    record do |m|
      # Check for class naming collisions.
      m.class_collisions class_path, "#{class_name}Cell"

      # Directories
      m.directory File.join('app/cells', class_path)
      m.directory File.join('app/cells', class_path, file_name)

      # Cell
      m.template 'cell.rb', File.join('app/cells', class_path, "#{file_name}_cell.rb")

      # View template for each action.
      actions.each do |action|
        path = File.join('app/cells', class_path, file_name, "#{action}.html.#{template_type}")
        m.template "view.html.#{template_type}", path,
          :assigns => { :action => action, :path => path }
      end
    end
  end

  def add_options!(opt)
    opt.separator ''
    opt.separator 'Options:'

    # Allow option to generate HAML views instead of ERB.
    opt.on('--haml',
    "Generate HAML output instead of the default ERB.") do |v|
      options[:haml] = v
    end
  end

  def banner
    "Usage: #{$0} cell NAME a_view another_view ... [--haml]"
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cells-3.3.0 generators/cell/cell_generator.rb
cells-2.3.0 generators/cell/cell_generator.rb