Sha256: fa23cee249da36cca8118f591d62f83f4104d373716e7bf8f25c6bd70a119193

Contents?: true

Size: 411 Bytes

Versions: 164

Compression:

Stored size: 411 Bytes

Contents

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:
    gem install rspec
EOS
  exit(0)
end

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

Version data entries

164 entries across 164 versions & 39 rubygems

Version Path
typographic-unit-0.1.0 tasks/rspec.rake
weatherhacks-0.1.1 tasks/rspec.rake
weatherhacks-0.1.0 tasks/rspec.rake
webspeak-0.0.1 tasks/rspec.rake