Sha256: 826ced19632efd0c605c7e8f19030d576e8a7c9d3fd9df7700f367d224371719
Contents?: true
Size: 1.41 KB
Versions: 3
Compression:
Stored size: 1.41 KB
Contents
description 'Modularis Compass Gem' # Sass Files stylesheet '../../scss/modularis/_variables.scss', :to => '_settings.scss' stylesheet 'scss/app.scss', :to => 'app.scss', :media => "screen, projector, print" # Make sure you list all the project template files here in the manifest. file 'humans.txt' file 'robots.txt' file 'MIT-LICENSE.txt' 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 return js_files.map {|f| "#{prefix_path}/#{File.basename(f)}"} end javascripts = copy_js_from("../../js", "modularis", ["modularis.js", "index.js"]) vendor_javascripts = copy_js_from("../../js", "vendor") javascript "../../js/modularis/modularis.js", :to => "modularis/modularis.js" html 'index.html', :erb => true, :javascripts => javascripts, :version => Modularis::VERSION help %Q{ If you need help, email us at modularis@themepile.com or visit modularis.themepile.com" } welcome_message %Q{ w00t! You're using ZURB Modularis, now go forth and rock 'n roll! } # file 'config.rb' # no_configuration_file!
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
modularis-0.0.3 | templates/project/manifest.rb |
modularis-0.0.2 | templates/project/manifest.rb |
modularis-0.0.1 | templates/project/manifest.rb |