Sha256: e597f7e4bc18cbe5545388cd0ffe1c24460f01dfc08661ae012d55948f2531ea
Contents?: true
Size: 648 Bytes
Versions: 1
Compression:
Stored size: 648 Bytes
Contents
require 'rubygems' require 'rake' 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 end Echoe.new('machinist', '0.1.0') 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/*"] p.has_rdoc = false p.development_dependencies = [] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
notahat-machinist-0.1.0 | Rakefile |