2011-08-29 07:50:13 +00:00
|
|
|
require "rbconfig"
|
|
|
|
platform = RbConfig::CONFIG["host_os"].downcase
|
|
|
|
|
2010-06-07 02:51:53 +00:00
|
|
|
source "http://rubygems.org"
|
2010-02-06 07:41:22 +00:00
|
|
|
|
2011-09-01 05:28:16 +00:00
|
|
|
gemspec
|
2010-07-30 16:42:44 +00:00
|
|
|
|
2010-08-24 04:22:25 +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"
|
2010-01-22 03:09:18 +00:00
|
|
|
|
2011-08-29 07:50:13 +00:00
|
|
|
if platform.include?("mingw") || platform.include?("mswin")
|
2011-09-01 05:28:16 +00:00
|
|
|
# JRuby requires these gems for development, but only
|
|
|
|
# on windows.
|
2011-08-29 07:50:13 +00:00
|
|
|
gem "jruby-openssl", "~> 0.7.4", :platforms => :jruby
|
|
|
|
gem "jruby-win32ole", "~> 0.8.5", :platforms => :jruby
|
|
|
|
end
|