Rakefile in notahat-machinist-0.1.0 vs Rakefile in notahat-machinist-0.1.1
- old
+ new
@@ -1,20 +1,20 @@
require 'rubygems'
require 'rake'
+require 'rake/clean'
require 'spec/rake/spectask'
require 'echoe'
desc 'Default: run specs.'
task :default => :spec
desc 'Run all the specs for the machinist plugin.'
Spec::Rake::SpecTask.new do |t|
t.spec_files = FileList['spec/**/*_spec.rb']
- t.spec_opts = ['--colour']
- t.rcov = true
+ t.rcov = false
end
-Echoe.new('machinist', '0.1.0') do |p|
+Echoe.new('machinist', '0.1.1') do |p|
p.description = "Fixtures aren't fun. Machinist is."
p.url = "http://github.com/notahat/machinist"
p.author = "Pete Yandell"
p.email = "pete@notahat.com"
p.ignore_pattern = ["coverage/*", "pkg/**/*", "spec/*"]