Sha256: d592e6608db5f0c2c1b333ceded5eb931808e876f620be92226d72b1dbc6cfb8
Contents?: true
Size: 606 Bytes
Versions: 6
Compression:
Stored size: 606 Bytes
Contents
#!/usr/bin/env rake require 'rubygems' require 'bundler/setup' 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 # Load all the rake tasks from the "tasks" folder. This folder # allows us to nicely separate rake tasks into individual files # based on their role, which makes development and debugging easier # than one monolithic file. task_dir = File.expand_path('../tasks', __FILE__) Dir["#{task_dir}/**/*.rake"].each do |task_file| load task_file end task :default => 'test:unit'
Version data entries
6 entries across 6 versions & 1 rubygems