Sha256: 2cd9a70b95d6f04f130238f1faa049a7c511f4a599b7cb5db457a5b57a3d152a
Contents?: true
Size: 941 Bytes
Versions: 1
Compression:
Stored size: 941 Bytes
Contents
require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "machinist" gem.summary = "Fixtures aren't fun. Machinist is." gem.email = "pete@notahat.com" gem.homepage = "http://github.com/notahat/machinist" gem.authors = ["Pete Yandell"] gem.has_rdoc = false gem.add_development_dependency "rspec", ">= 1.2.8" end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler" end require 'spec/rake/spectask' desc 'Run the specs.' Spec::Rake::SpecTask.new(:spec) do |spec| spec.libs << 'lib' << 'spec' spec.spec_files = FileList['spec/**/*_spec.rb'] end desc 'Run the specs with rcov.' Spec::Rake::SpecTask.new(:rcov) do |spec| spec.libs << 'lib' << 'spec' spec.pattern = 'spec/**/*_spec.rb' spec.rcov = true end task :spec => :check_dependencies desc 'Run the specs.' task :default => :spec
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
machinist-1.0.6 | Rakefile |