Sha256: 03ac39a26d74a7cd81e48a2aa01244247a37214bd5f241d25d01f5969750b0ae

Contents?: true

Size: 973 Bytes

Versions: 1

Compression:

Stored size: 973 Bytes

Contents

require 'generators/ember/generator_helpers'

module Ember
  module Generators
    class ControllerGenerator < ::Rails::Generators::NamedBase
      include Ember::Generators::GeneratorHelpers

      source_root File.expand_path("../../templates", __FILE__)

      desc "Creates a new Ember.js controller."

      class_option :array, :type => :boolean, :default => false, :desc => "Create an Ember.ArrayController to represent multiple objects."
      class_option :object, :type => :boolean, :default => false, :desc => "Create an Ember.ObjectController to represent a single object."

      def create_controller_files
        file_path = File.join(app_path, 'controllers', class_path, "#{file_name}.es6")

        if options.array?
          template "array_controller.es6", file_path
        elsif options.object?
          template "object_controller.es6", file_path
        else
          template "controller.es6", file_path
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ember-appkit-rails-0.5.0 lib/generators/ember/controller_generator.rb