Sha256: 54b503eb226576578af8a72d684eb09cae2aa21810a0dc289a1137ac5a1c1bf6
Contents?: true
Size: 1.02 KB
Versions: 22
Compression:
Stored size: 1.02 KB
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" class_option :app_name, :type => :string, :aliases => "-n", :default => false, :desc => "Custom ember app name" 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
22 entries across 22 versions & 2 rubygems