Sha256: 4a643c0a443f0b0168d2bc11a179f6cd40039a1db25ec32db80818f9b44fec3e
Contents?: true
Size: 510 Bytes
Versions: 8
Compression:
Stored size: 510 Bytes
Contents
require 'rubygems' require 'bundler/setup' require 'rake/testtask' require 'rspec/core/rake_task' # Immediately sync all stdout so that tools like buildbot can # immediately load in the output. $stdout.sync = true $stderr.sync = true # This installs the tasks that help with gem creation and # publishing. Bundler::GemHelper.install_tasks namespace :test do RSpec::Core::RakeTask.new(:unit) do |t| t.pattern = "test/unit/**/*_test.rb" t.rspec_opts = "--color" end end task default: "test:unit"
Version data entries
8 entries across 8 versions & 3 rubygems