File: specs.rake

package info (click to toggle)
ruby-rouge 4.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,836 kB
  • sloc: ruby: 38,168; sed: 2,071; perl: 152; makefile: 8
file content (8 lines) | stat: -rw-r--r-- 217 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
namespace :check do
  Rake::TestTask.new(:specs) do |t|
    t.libs << "lib"
    t.ruby_opts << "-r./spec/spec_helper"
    t.warning = $VERBOSE || ENV["VERBOSE"]
    t.pattern = FileList['spec/**/*_spec.rb']
  end
end