Codebase list ruby-diffy / debian/3.2.1-1 Rakefile
debian/3.2.1-1

Tree @debian/3.2.1-1 (Download .tar.gz)

Rakefile @debian/3.2.1-1raw · history · blame

require 'rspec/core/rake_task'

task :default => :spec

desc "Run all specs in spec directory"

RSpec::Core::RakeTask.new(:spec) do |t|
  t.pattern = "./spec/**/*_spec.rb" # don't need this, it's default.
  t.ruby_opts = "-w"
end