Sha256: be71d80bef647ee9224c6292c406ffd0349c86076c336fb8d0e6044b6055f0f1

Contents?: true

Size: 467 Bytes

Versions: 8

Compression:

Stored size: 467 Bytes

Contents

begin
  require 'rspec'
rescue LoadError
  require 'rubygems' unless ENV['NO_RUBYGEMS']
  require 'rspec'
end
begin
  require 'rspec/core/rake_task'
rescue LoadError
  puts <<-EOS
To use rspec for testing you must install rspec gem:
    gem install rspec
EOS
  exit(0)
end

desc "Run the specs under spec/models"
RSpec::Core::RakeTask.new do |t|
  t.rspec_opts = ['--options', "spec/spec.opts"]
  # :TODO: Port me
  # t.spec_files = FileList['spec/**/*_spec.rb']
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
build-tool-0.5.3 tasks/rspec.rake
build-tool-0.5.2 tasks/rspec.rake
build-tool-0.4.6 tasks/rspec.rake
build-tool-0.5.1 tasks/rspec.rake
build-tool-0.4.5 tasks/rspec.rake
build-tool-0.5.0 tasks/rspec.rake
build-tool-0.4.4 tasks/rspec.rake
build-tool-0.4.3 tasks/rspec.rake