Sha256: eea24faa62e90c0577cc0fe39d215b62dd1469d0f659bfa42a9a73e2150c69c9
Contents?: true
Size: 492 Bytes
Versions: 8
Compression:
Stored size: 492 Bytes
Contents
require 'generators/ember/generator_helpers' module Ember module Generators class TemplateGenerator < ::Rails::Generators::NamedBase include Ember::Generators::GeneratorHelpers source_root File.expand_path("../../templates", __FILE__) desc "Creates a new Ember.js template." def create_template_files file_path = File.join(app_path, 'templates', class_path, "#{file_name}.hbs") template 'template.hbs', file_path end end end end
Version data entries
8 entries across 8 versions & 1 rubygems