Skip to content

Instantly share code, notes, and snippets.

@jmetzmeier
Created September 24, 2015 00:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmetzmeier/d6c2680701afa1d17853 to your computer and use it in GitHub Desktop.
Save jmetzmeier/d6c2680701afa1d17853 to your computer and use it in GitHub Desktop.
(testvenv2)jordan@tesla ~/prog/vagrant (master) $ bundle install
Resolving dependencies...
Using rake 10.4.2
Using addressable 2.3.8
Using builder 3.2.2
Using bundler 1.7.4
Using ffi 1.9.8
Using childprocess 0.5.5
Using safe_yaml 1.0.4
Using crack 0.4.2
Using diff-lcs 1.2.5
Using unf_ext 0.0.7.1
Using unf 0.1.4
Using domain_name 0.5.24
Using erubis 2.7.0
Using fake_ftp 0.1.1
Using gssapi 1.2.0
Using gyoku 1.3.1
Using hashicorp-checkpoint 0.1.4
Using http-cookie 1.0.2
Using httpclient 2.6.0.1
Using i18n 0.7.0
Using rb-fsevent 0.9.6
Using rb-inotify 0.9.5
Using listen 3.0.3
Using little-plugger 1.1.4
Using log4r 1.1.10
Using multi_json 1.11.2
Using logging 1.8.2
Using mime-types 2.6.2
Using mini_portile 0.6.0
Using net-ssh 2.9.2
Using net-scp 1.1.2
Using net-sftp 2.1.2
Using netrc 0.10.3
Using nokogiri 1.6.3.1
Using nori 2.6.0
Using rb-kqueue 0.2.4
Using rest-client 1.8.0
Using rspec-core 2.14.8
Using rspec-expectations 2.14.5
Using rspec-mocks 2.14.6
Using rspec 2.14.1
Using rubyntlm 0.4.0
Using rubyzip 1.1.7
Using thor 0.18.1
Using uuidtools 2.1.5
Using wdm 0.1.1
Using winrm 1.3.4
Using winrm-fs 0.2.2
Using vagrant 1.7.4 from source at .
Using vagrant-spec 0.0.1 from https://github.com/mitchellh/vagrant-spec.git (at master)
Using webmock 1.21.0
Updating files in vendor/cache
Your bundle is complete!
It was installed into ./vendor/bundle
(testvenv2)jordan@tesla ~/prog/vagrant (master) $ rake
https://github.com/mitchellh/vagrant-spec.git (at master) is not yet checked out. Run `bundle install` first.
(testvenv2)jordan@tesla ~/prog/vagrant (master) $ cat Rakefile
require 'rubygems'
require 'bundler/setup'
# 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"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment