Sha256: 7176635f112e7f00562d64122485f1171b94ec2253bef08a5a66c0fd48c1d4df

Contents?: true

Size: 606 Bytes

Versions: 37

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

37 entries across 37 versions & 1 rubygems

Version Path
vagrant-parallels-1.4.2 Rakefile
vagrant-parallels-1.4.1 Rakefile
vagrant-parallels-1.4.0 Rakefile
vagrant-parallels-1.4.0.rc1 Rakefile
vagrant-parallels-1.3.13 Rakefile
vagrant-parallels-1.3.12 Rakefile
vagrant-parallels-1.3.10 Rakefile
vagrant-parallels-1.3.9 Rakefile
vagrant-parallels-1.3.8 Rakefile
vagrant-parallels-1.3.7 Rakefile
vagrant-parallels-1.3.6 Rakefile
vagrant-parallels-1.3.5 Rakefile
vagrant-parallels-1.3.4 Rakefile
vagrant-parallels-1.3.3 Rakefile
vagrant-parallels-1.3.3.rc1 Rakefile
vagrant-parallels-1.3.2 Rakefile
vagrant-parallels-1.3.1 Rakefile
vagrant-parallels-1.3.0 Rakefile
vagrant-parallels-1.2.2 Rakefile
vagrant-parallels-1.2.1 Rakefile