Sha256: f99f1ada858daef5d3d67c423393a62d55ecccbf0f4352b04bc52f0a7820fdd6

Contents?: true

Size: 451 Bytes

Versions: 9

Compression:

Stored size: 451 Bytes

Contents

require "bundler/setup"
require "rake/testtask"

# Immediately sync all stdout so that tools like buildbot can
# immediately load in the output.
$stdout.sync = true
$stderr.sync = true

# Change to the directory of this file.
Dir.chdir(File.expand_path("../", __FILE__))

Bundler::GemHelper.install_tasks

Rake::TestTask.new do |task|
  task.test_files = FileList['test/**/test*.rb']
end

desc "Run tests"
task :default => :test
task :tests => :test

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
nugrant-2.1.4 Rakefile
nugrant-2.1.3 Rakefile
nugrant-2.1.2 Rakefile
nugrant-2.1.1 Rakefile
nugrant-2.1.0 Rakefile
nugrant-2.0.0 Rakefile
nugrant-2.0.0.rc1 Rakefile
nugrant-2.0.0.pre2 Rakefile
nugrant-2.0.0.pre1 Rakefile