Sha256: b560307f750e5d66f2f861f872b74b48c81ef53552bb1e1e2321999f8bfbf5b1

Contents?: true

Size: 431 Bytes

Versions: 16

Compression:

Stored size: 431 Bytes

Contents

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

Rake::TestTask.new('test:default') do |task|
  task.libs << "test"

  task.test_files = Dir['test/**/*_test.rb']
  task.verbose = true
  task.warning = true
end

namespace :test do
  desc "Run Tests with a custom exceptions app"
  task :custom do
    sh "rake test:default CUSTOM_EXCEPTIONS_APP=1"
  end
end

task(:test).enhance %w(test:default test:custom)
task default: :test

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
rambulance-3.3.0 Rakefile
rambulance-3.2.0 Rakefile
rambulance-3.1.0 Rakefile
rambulance-3.0.0 Rakefile
rambulance-2.3.0 Rakefile
rambulance-2.2.0 Rakefile
rambulance-2.0.0 Rakefile
rambulance-1.1.1 Rakefile
rambulance-1.1.0 Rakefile
rambulance-1.0.3 Rakefile
rambulance-1.0.2 Rakefile
rambulance-1.0.1 Rakefile
rambulance-1.0.0 Rakefile
rambulance-0.6.0 Rakefile
rambulance-0.5.0 Rakefile
rambulance-0.4.0 Rakefile