Sha256: 7f692656462b5c2c9e1c8bd494f27c92f5dd15c22bab4230c1c5b7e28f76b9a2
Contents?: true
Size: 456 Bytes
Versions: 6
Compression:
Stored size: 456 Bytes
Contents
require 'rubygems' require 'bundler' require 'rspec/core/rake_task' Bundler::GemHelper.install_tasks RSpec::Core::RakeTask.new(:spec) task :default => :spec task :test do puts "Creating a Bourbon directory..." `bourbon install --path test` puts "Generating CSS..." `sass --watch test:css/ --style expanded` end task :clean do puts "Deleting Bourbon directory..." `rm -rf test/bourbon` puts "Deleting generated CSS..." `rm -rf css/` end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
neat-1.6.0.pre | Rakefile |
neat-1.5.0 | Rakefile |
neat-1.5.0.pre | Rakefile |
neat-1.4.0 | Rakefile |
neat-1.3.0 | Rakefile |
neat-1.2.1 | Rakefile |