File: rspec.rake

package info (click to toggle)
rake-compiler 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 348 kB
  • sloc: ruby: 1,799; makefile: 4
file content (9 lines) | stat: -rw-r--r-- 211 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
begin
  require "rspec/core/rake_task"
rescue LoadError => e
  warn "RSpec gem is required, please install it (gem install rspec)."
end

if defined?(RSpec::Core::RakeTask)
  RSpec::Core::RakeTask.new(:spec)
end