Sha256: c25a7eaecf8031e66364a5bbb04514038229cb3d33082c97861f4375ce4f095e

Contents?: true

Size: 356 Bytes

Versions: 12

Compression:

Stored size: 356 Bytes

Contents

require "bundler/gem_tasks"
require 'rake'
require 'rake/testtask'

task :spec do
  begin
    require 'rspec/core/rake_task'
    desc "Run the specs under spec/"
    RSpec::Core::RakeTask.new do |t|
    	t.fail_on_error = false
	    t.pattern = FileList['spec/**/*_spec.rb'].exclude(/tunnel/)
    end
  rescue NameError, LoadError => e
    puts e
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
testingbot-0.2.3 Rakefile
testingbot-0.2.2 Rakefile
testingbot-0.2.1 Rakefile
testingbot-0.2.0 Rakefile
testingbot-0.1.7 Rakefile
testingbot-0.1.6 Rakefile
testingbot-0.1.5 Rakefile
testingbot-0.1.4 Rakefile
testingbot-0.1.3 Rakefile
testingbot-0.1.2 Rakefile
testingbot-0.1.1 Rakefile
testingbot-0.1.0 Rakefile