Sha256: 8d10b4e1de800f33c70e4501c59a54b7fd36f48e48f482eb15eacd7f8fbd26cd
Contents?: true
Size: 442 Bytes
Versions: 1
Compression:
Stored size: 442 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"] # t.files = FileList['spec/**/*_spec.rb'] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
indentation-0.0.4 | tasks/rspec.rake |