Sha256: 52b4c815ec9d828a60b40f93b8048c5fffdd2bb46bbd3bc8a56ffe22ab32a0e6

Contents?: true

Size: 931 Bytes

Versions: 1

Compression:

Stored size: 931 Bytes

Contents

require 'generators/ember/generator_helpers'

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

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

      desc "Creates a new Ember.js view and associated Handlebars template"
      class_option :javascript_engine, :desc => "Engine for JavaScripts"
      class_option :ember_path, :type => :string, :aliases => "-d", :default => false, :desc => "Custom ember app path"
      class_option :with_template, :type => :boolean, :default => false, :desc => "Create template for this view"

      def create_view_files
        file_path = File.join(ember_path, 'views', class_path, "#{file_name}_view.#{engine_extension}")
        template "view.#{engine_extension}", file_path
        invoke('ember:template', [ name ], options) if options[:with_template]
      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ember-rails-lite-0.12.0 lib/generators/ember/view_generator.rb