Sha256: 377e5465bb9015f964f9579856c5276f7567581c02e1c543ddfbcaca2dc5df8b
Contents?: true
Size: 483 Bytes
Versions: 1
Compression:
Stored size: 483 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 :test task :clean do puts "Deleting Bourbon directory..." `rm -rf test/bourbon` puts "Deleting generated CSS..." `rm -rf css/` end # task :clean
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
neat-1.2.0 | Rakefile |