Sha256: fe4d4b8397a5687b2fc78f7aa58ab1058eccd35e05f497d7a1e0648a590ff604

Contents?: true

Size: 354 Bytes

Versions: 8

Compression:

Stored size: 354 Bytes

Contents

require 'bundler'
Bundler::GemHelper.install_tasks

require 'rake/testtask'

unless File.exists? "test/dummy/db/test.sqlite3"
  sh "cd test/dummy; rake db:migrate; rake db:test:prepare; cd ../../;"
end

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end

task :default => :test

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
exception_notification-3.0.0 Rakefile
exception_notification-3.0.0.rc1 Rakefile
exception_notification-2.6.1 Rakefile
exception_notification-2.6.0 Rakefile
exception_notification-2.6.0.rc1 Rakefile
exception_notification-2.5.2 Rakefile
exception_notification-2.5.1 Rakefile
exception_notification-2.5.0 Rakefile