Last active
December 15, 2015 08:59
-
-
Save terrancesnyder/5234610 to your computer and use it in GitHub Desktop.
VeeWee Windows 7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install ruby http://rubyinstaller.org/downloads/ | |
http://rubyforge.org/frs/download.php/76798/rubyinstaller-1.9.3-p392.exe | |
# download and configure devkit for windows @http://rubyinstaller.org/downloads/ | |
https://github.com/downloads/oneclick/rubyinstaller/DevKit-tdm-32-4.5.2-20111229-1559-sfx.exe | |
cd <DEVKIT_INSTALL_DIR> | |
ruby dk.rb init | |
ruby dk.rb review | |
ruby dk.rb install | |
# test install | |
gem install json --platform=ruby | |
git clone git://github.com/jedi4ever/veewee.git | |
cd veewee | |
gem install bundler | |
bundle install | |
gem build veewee.gemspec | |
gem install veewee-0.3.7.gem | |
# done... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# run these at windows command line otherwise bad things happen | |
veewee vbox list | |
veewee vbox build 'ubuntu-server-1204-x64' | |
veewee vbox validate 'ubuntu-server-1204-x64' | |
vagrant package --base ubuntu-server-1204-x64 --output ubuntu-server-1204-x64.box |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment