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