File tree 2 files changed +2
-0
lines changed
2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ namespace :assets do
13
13
sh 'bower install'
14
14
sh 'cp -R bower_components/foundation-sites/js/* vendor/assets/js/'
15
15
sh 'cp -R bower_components/foundation-sites/scss/* vendor/assets/scss/'
16
+ sh 'cp -R bower_components/foundation-sites/scss/settings/_settings.scss lib/generators/foundation/templates'
16
17
sh 'cp -R bower_components/motion-ui/src/* vendor/assets/scss/motion-ui'
17
18
18
19
js_files = Dir [ 'vendor/assets/js/*.js' ] . sort
Original file line number Diff line number Diff line change 4
4
scenario 'stylesheets assets files are added' do
5
5
application_css_file = IO . read ( "#{ dummy_app_path } /app/assets/stylesheets/application.css" )
6
6
7
+ expect ( File ) . to exist ( "#{ dummy_app_path } /app/assets/stylesheets/_settings.scss" )
7
8
expect ( File ) . to exist ( "#{ dummy_app_path } /app/assets/stylesheets/foundation_and_overrides.scss" )
8
9
expect ( application_css_file ) . to match ( /require foundation_and_overrides/ )
9
10
end
You can’t perform that action at this time.
0 commit comments