Sha256: 885fed8cf80c08805293868ba348461e8b7add78f91e5d65c998e9436b42a7a0

Contents?: true

Size: 568 Bytes

Versions: 15

Compression:

Stored size: 568 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

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

# This installs the tasks that help with gem creation and
# publishing.
Bundler::GemHelper.install_tasks

# Install the `spec` task so that we can run tests.
RSpec::Core::RakeTask.new

# Default task is to run the unit tests
task :default => "spec"

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
vagrant-parallels-0.1.2 Rakefile
vagrant-parallels-0.1.1 Rakefile
vagrant-parallels-0.1.0 Rakefile
vagrant-parallels-0.0.9 Rakefile
vagrant-parallels-0.0.8 Rakefile
vagrant-parallels-0.0.7 Rakefile
vagrant-parallels-0.0.6 Rakefile
vagrant-parallels-0.0.5 Rakefile
vagrant-parallels-0.0.4 Rakefile
vagrant-parallels-0.0.3 Rakefile
vagrant-parallels-0.0.1 Rakefile
vagrant-parallels-0.0.4.dev Rakefile
vagrant-parallels-0.0.3.dev Rakefile
vagrant-parallels-0.0.2.dev Rakefile
vagrant-parallels-0.0.1.dev Rakefile