vagrant/Gemfile

18 lines
519 B
Ruby
Raw Normal View History

require "rbconfig"
platform = RbConfig::CONFIG["host_os"].downcase
source "http://rubygems.org"
gemspec
2010-07-30 16:42:44 +00:00
# Use the following gems straight from git, since Vagrant dev
# typically coincides with it
2011-07-04 00:05:26 +00:00
gem "virtualbox", :git => "git://github.com/mitchellh/virtualbox.git"
if platform.include?("mingw") || platform.include?("mswin")
# JRuby requires these gems for development, but only
# on windows.
gem "jruby-openssl", "~> 0.7.4", :platforms => :jruby
gem "jruby-win32ole", "~> 0.8.5", :platforms => :jruby
end