Sha256: c1d1edfaa59d66cd1e3dfbd34c3e71644f8646727b2cb63b7beb60dc0d5e43b3
Contents?: true
Size: 1015 Bytes
Versions: 4
Compression:
Stored size: 1015 Bytes
Contents
require 'generators/ember/generator_helpers' module Ember module Generators class ComponentGenerator < ::Rails::Generators::NamedBase include Ember::Generators::GeneratorHelpers source_root File.expand_path("../../templates", __FILE__) desc "Creates a new Ember.js component and component template\nCustom Ember Components require at least two descriptive names separated by a dash. Use CamelCase or dash-case to name your component.\n\nExample,\n\trails generate ember:component PostChart [options]\n\trails generate ember:component post-chart [options]" def create_component_files dashed_file_name = file_name.gsub(/_/, '-') component_path = File.join(app_path, 'components', class_path, "#{dashed_file_name}.js.es6") template "component.js.es6", component_path template_path = File.join(app_path, 'templates/components', class_path, "#{dashed_file_name}.hbs") template "component.template.hbs", template_path end end end end
Version data entries
4 entries across 4 versions & 1 rubygems