Sha256: 98e96aa03e1ec31ff1506dde7599e23e3ead9c26a6dcb549b788bf844744b398

Contents?: true

Size: 381 Bytes

Versions: 3

Compression:

Stored size: 381 Bytes

Contents

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

task :default => :test

Rake::TestTask.new do |t|
  t.libs << "test"
  t.pattern = "test/**/*_test.rb"
  t.verbose = ENV.key?("VERBOSE")
  t.warning = false
end

namespace :test do
  desc "Run all tests including integration tests"
  task :all do
    ENV["TEST_KAFKA_INTEGRATION"] = "yes"
    Rake::Task[:test].invoke
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
glass_octopus-2.2.0 Rakefile
glass_octopus-2.1.0 Rakefile
glass_octopus-2.0.0 Rakefile