lib/generators/ember/template_generator.rb in ember-appkit-rails-0.1.2 vs lib/generators/ember/template_generator.rb in ember-appkit-rails-0.2.0
- old
+ new
@@ -6,13 +6,12 @@
include Ember::Generators::GeneratorHelpers
source_root File.expand_path("../../templates", __FILE__)
desc "Creates a new Ember.js template."
- class_option :ember_path, :type => :string, :aliases => "-d", :default => false, :desc => "Custom ember app path"
def create_template_files
- file_path = File.join(ember_path, 'templates', class_path, "#{file_name}.hbs")
+ file_path = File.join(app_path, 'templates', class_path, "#{file_name}.hbs")
template 'template.hbs', file_path
end
end
end
end