Sha256: 79ff65ee224f47fabf6a6fe4a94907c758fc7499a926c01ba76c8686d0896d53

Contents?: true

Size: 641 Bytes

Versions: 1

Compression:

Stored size: 641 Bytes

Contents

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.rcov = false
end

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/*"]
  p.has_rdoc = false
  p.development_dependencies = []
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
notahat-machinist-0.1.1 Rakefile