Sha256: 188a13193f503d6c48bf0cf4cbf44bb607ee4c75e847fd5e445a8d9ded7e5f78

Contents?: true

Size: 892 Bytes

Versions: 29

Compression:

Stored size: 892 Bytes

Contents

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"

# 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

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
vagrant-skytap-0.3.6 Rakefile
vagrant-skytap-0.3.5 Rakefile
vagrant-skytap-0.3.4 Rakefile
vagrant-skytap-0.3.3 Rakefile
vagrant-skytap-0.3.2 Rakefile
vagrant-skytap-0.3.1 Rakefile
vagrant-skytap-0.3.0 Rakefile
vagrant-skytap-0.2.10 Rakefile
vagrant-skytap-0.2.9 Rakefile
vagrant-skytap-0.2.8 Rakefile
vagrant-skytap-0.2.7 Rakefile
vagrant-skytap-0.2.6 Rakefile
vagrant-skytap-0.2.5 Rakefile
vagrant-skytap-0.2.4 Rakefile
vagrant-skytap-0.2.3 Rakefile
vagrant-skytap-0.2.2 Rakefile
vagrant-skytap-0.2.1 Rakefile
vagrant-skytap-0.2.0 Rakefile
vagrant-skytap-0.1.11 Rakefile
vagrant-skytap-0.1.10 Rakefile