Sha256: 1749fe4b29c42b6f99c40b8ae79f7d1c5bdd42f6e5479e1317be861dde5ef8ab
Contents?: true
Size: 1.27 KB
Versions: 10
Compression:
Stored size: 1.27 KB
Contents
description 'Foundation Compass Gem' stylesheet '../project/scss/_settings.scss', :to => '_settings.scss' stylesheet '../project/scss/app.scss', :to => 'app.scss' stylesheet '../../scss/normalize.scss', :to => 'normalize.scss', :media => "screen, projector, print" def copy_js_from(relative_path, prefix_path, excludes=[]) absolute_path = File.join(File.dirname(__FILE__), relative_path, prefix_path) js_files = Dir.glob("#{absolute_path}/*.js") js_files.reject! {|f| excludes.include? File.basename(f)} js_files.each do |js| javascript "#{relative_path}/#{prefix_path}/#{File.basename(js)}", :to => "#{prefix_path}/#{File.basename(js)}" end end javascripts = copy_js_from("../../js", "foundation", ["index.js"]) copy_js_from("../../js", "vendor") html '../project/index.html', :erb => true, :javascripts => javascripts, :version => Foundation::VERSION, :to => 'upgrade.html' help %Q{ If you need help, email us at foundation@zurb.com or visit foundation.zurb.com" } welcome_message %Q{ bundle exec compass install -r zurb-foundation foundation/upgrade Your project assets have been upgraded, w00t! It's possible there have been additional customizable settings added to Foundation so you should check out http://foundation.zurb.com/docs/gem-install.php#settings. }
Version data entries
10 entries across 10 versions & 2 rubygems