File: rspec.rake

package info (click to toggle)
ruby-yajl 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,980 kB
  • sloc: ansic: 2,473; ruby: 2,049; makefile: 4
file content (16 lines) | stat: -rw-r--r-- 384 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
begin
  require 'rspec'
  require 'rspec/core/rake_task'

  desc "Run all examples with RCov"
  RSpec::Core::RakeTask.new('spec:rcov') do |t|
    t.rcov = true
  end
  RSpec::Core::RakeTask.new('spec') do |t|
    t.verbose = true
  end

  task :default => :spec
rescue LoadError
  puts "rspec, or one of its dependencies, is not available. Install it with: sudo gem install rspec"
end