File: Rakefile

package info (click to toggle)
ruby-diffy 3.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 212 kB
  • sloc: ruby: 1,035; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 230 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
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