ember-generators 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.markdown
CHANGED
@@ -5,12 +5,9 @@ class Ember::BootstrapGenerator < Rails::Generator::Base
|
|
5
5
|
|
6
6
|
def add_gems
|
7
7
|
gem_group :assets do
|
8
|
-
%w(
|
8
|
+
%w(asset_pipeline_routes haml_assests ember-layout ember-resource ember-routemanager).each do |name|
|
9
9
|
gem name
|
10
10
|
end
|
11
|
-
|
12
|
-
gem 'handlebars_haml_assets', :git => "https://github.com/leahpar/handlebars_haml_assets.git"
|
13
|
-
gem 'asset_pipeline_routes', :git => "https://github.com/leahpar/asset_pipeline_routes.git"
|
14
11
|
end
|
15
12
|
|
16
13
|
gem_group :development, :tests do
|