Sha256: a3c35dbca9352e597de6ea52ca5ad2d2a12a18c6b32c0a8b7088a51fa372b354

Contents?: true

Size: 431 Bytes

Versions: 5

Compression:

Stored size: 431 Bytes

Contents

#!/usr/bin/env rake
require 'rake/testtask'

require 'bump/tasks'
require 'wwtd/tasks'

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

task :test do
  retval = true
  retval &= Rake::Task[:test_units].invoke
  retval &= system(File.dirname(__FILE__) + "/test/integration/run_integration_tests")
  exit retval
end

task :default => 'wwtd:local'

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ar_mysql_flexmaster-1.0.2 Rakefile
ar_mysql_flexmaster-1.0.1 Rakefile
ar_mysql_flexmaster-1.0.0 Rakefile
ar_mysql_flexmaster-0.6.0 Rakefile
ar_mysql_flexmaster-0.5.0 Rakefile