Sha256: 08698858bd1fcb294701520b300c5a637210471b935517b22a3b68e373faf382

Contents?: true

Size: 1.41 KB

Versions: 6

Compression:

Stored size: 1.41 KB

Contents

require 'sproutcore/generator_helper'

class ModelGenerator < RubiGen::Base

  include SproutCore::GeneratorHelper

  default_options :author => nil

  attr_reader :name, :client_location

  def initialize(runtime_args, runtime_options = {})
    super
    usage if args.empty?
    @name = args.shift
    extract_options
    assign_names!(@name)
  end

  def manifest
    record do |m|
      fp = client_file_path('models','js')
      build_client_directories(m, fp)
      m.template 'model.js', fp

      fp = client_file_path('fixtures','js')
      build_client_directories(m, fp)
      m.template 'fixture.js', fp

      fp = client_file_path('tests/models', 'rhtml')
      build_client_directories(m, fp)
      m.template 'test.rhtml', fp
    end
  end

  protected
    def banner
      <<-EOS
Creates a SproutCore model objects

USAGE: #{$0} #{spec.name} client_name/model_name [ClassName]
EOS
    end

    def add_options!(opts)
      opts.on("-l", '--loc="Location"', String, "Location of build. If not passed, search clients and frameworks dirs", "Default: none") { |options[:loc]| }
    end

    def extract_options
      @client_location = options[:loc]
      # for each option, extract it into a local variable (and create an "attr_reader :author" at the top)
      # Templates can access these value via the attr_reader-generated methods, but not the
      # raw instance variable value.
      # @author = options[:author]
    end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
sproutcore-0.9.12 sc_generators/model/model_generator.rb
sproutcore-0.9.14 sc_generators/model/model_generator.rb
sproutcore-0.9.13 sc_generators/model/model_generator.rb
sproutcore-0.9.15 sc_generators/model/model_generator.rb
sproutcore-0.9.16 sc_generators/model/model_generator.rb
sproutcore-0.9.17 sc_generators/model/model_generator.rb