File: rspec.rake

package info (click to toggle)
rake-compiler 0.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 324 kB
  • sloc: ruby: 1,497; makefile: 3
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