File: ruby-tests.rake

package info (click to toggle)
ruby-memoizable 0.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 296 kB
  • sloc: ruby: 1,052; makefile: 4
file content (12 lines) | stat: -rw-r--r-- 249 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
require 'gem2deb/rake/spectask'

if RUBY_VERSION.to_f >= 3.1
  ENV['RUBYOPT'] = "#{ENV['RUBYOPT']} --disable-error_highlight"
end

Gem2Deb::Rake::RSpecTask.new(:spec) do |t|
  t.pattern = FileList['./spec/**/*_spec.rb']
end

task :default => :spec