Sha256: 5fac5cc6b411b8172a4afda2d3e14e8d7e8880098a91bc16e0a8fdf9f51a8048

Contents?: true

Size: 1.84 KB

Versions: 2

Compression:

Stored size: 1.84 KB

Contents

#require 'rails_generator/generators/components/controller/controller_generator'
require 'rails/generators/named_base'
module Cells
module Generators
class CellGenerator < ::Rails::Generators::NamedBase
  argument :actions, :type => :array, :default => [], :banner => "action action"
  check_class_collision :suffix => "Cell"

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

  hook_for :template_engine
  hook_for :test_framework
  
  source_root File.expand_path(File.join(File.dirname(__FILE__), 'templates'))
  
      
  #attr_reader :template_type

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

  #def ___manifest
      # Directories
      #m.directory File.join('app/cells', class_path)
      #m.directory File.join('app/cells', class_path, file_name)
      #m.directory File.join('test/cells')
      
      # 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
      
      # Functional test for the widget.
      #m.template 'cell_test.rb', File.join('test/cells/', "#{file_name}_cell_test.rb"), :assigns => {:states => actions}
    #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

end;end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cells-3.4.0.beta2 rails_generators/cell/cell_generator.rb
cells-3.4.0.beta1 rails_generators/cell/cell_generator.rb