Sha256: 874d171fb39a503be656030d42103cf804ca974130d24a19985aa0dd33a2b7e4

Contents?: true

Size: 501 Bytes

Versions: 22

Compression:

Stored size: 501 Bytes

Contents

# Borrowed from http://github.com/rsim/ruby-plsql/tree/master/tasks/rspec.rake
# Github++
begin
  require "spec"
rescue LoadError
  require "rubygems"
  require "spec"
end

begin
  require "spec/rake/spectask"
rescue LoadError
  puts <<-EOS
To use rspec for testing you must install rspec gem:
  [sudo] gem install rspec
EOS
  exit(0)
end

desc "Run the specs under spec/*"
Spec::Rake::SpecTask.new do |t|
  t.spec_opts = ["--options", "spec/spec.opts"]
  t.spec_files = FileList["spec/*_spec.rb"]
end

Version data entries

22 entries across 22 versions & 7 rubygems

Version Path
brightbox-object-factory-0.1.3 tasks/rspec.rake
brightbox-object-factory-0.2.2 tasks/rspec.rake
brightbox-rujitsu-0.1.8 tasks/rspec.rake
brightbox-rujitsu-0.1.9 tasks/rspec.rake
brightbox-rujitsu-0.2.5 tasks/rspec.rake
brightbox-rujitsu-0.2 tasks/rspec.rake
caius-gtranslate-0.9.1 tasks/rspec.rake
rahoulb-object-factory-0.1.0 tasks/rspec.rake
rahoulb-object-factory-0.1.1 tasks/rspec.rake
rahoulb-object-factory-0.1.2 tasks/rspec.rake
rahoulb-object-factory-0.1.3 tasks/rspec.rake
rahoulb-rujitsu-0.1.3 tasks/rspec.rake
rahoulb-rujitsu-0.1.4 tasks/rspec.rake
rahoulb-rujitsu-0.1.5 tasks/rspec.rake
rahoulb-rujitsu-0.1.6 tasks/rspec.rake
rahoulb-rujitsu-0.1.7 tasks/rspec.rake
rahoulb-rujitsu-0.1.8 tasks/rspec.rake
object-factory-0.2.4 tasks/rspec.rake
rujitsu-0.3.1 tasks/rspec.rake
rujitsu-0.3 tasks/rspec.rake