Sha256: 3b093e7929d9ea5afbe8f62cfcd27645616ce958fa4d0eb87021bf4c85e754c7
Contents?: true
Size: 842 Bytes
Versions: 15
Compression:
Stored size: 842 Bytes
Contents
begin require 'bundler/setup' require "bundler/gem_tasks" rescue LoadError puts "You must `gem install bundler` and `bundle install` to run rake tasks" end require 'rake' require 'rake/testtask' task :default => [:test] Rake::TestTask.new do |t| # Rake 11 makes warnings on by default, but there is so much noise, including # from our dependencies, and from things I think are silly warnings like # "shadowing outer local variable" # Possibly could turn back on in the future using https://rubygems.org/gems/warning/versions/0.10.0 # gem to customize. t.warning = false t.pattern = 'test/**/*_test.rb' t.libs.push 'test', 'test_support' end # Not documented well, but this seems to be # the way to load rake tasks from other files #import "lib/tasks/load_map.rake" Dir.glob('lib/tasks/*.rake').each { |r| import r}
Version data entries
15 entries across 15 versions & 1 rubygems