Sha256: ffa76ec2834c5eb9287ebefce9d9953e90534bd16e630b105da201a2404cd090
Contents?: true
Size: 420 Bytes
Versions: 3
Compression:
Stored size: 420 Bytes
Contents
require 'bundler/gem_tasks' require 'rspec/core/rake_task' desc "Run specs" RSpec::Core::RakeTask.new(:spec) {|t|} namespace :spec do desc "Clean up rbx compiled files and run spec suite" RSpec::Core::RakeTask.new(:ci) { |t| Dir.glob("**/*.rbc").each {|f| FileUtils.rm_f(f) } } end desc "Run guard" task :guard do sh %{bundle exec guard start} end desc "Run spork" task :spork do sh %{bundle exec spork} end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
woodchuck-json-event-0.0.2 | Rakefile |
woodchuck-json-event-0.0.1 | Rakefile |
woodchuck-0.0.1 | Rakefile |