Update Gemfile and remove ruby-debug as a dep
This commit is contained in:
parent
7c405477d5
commit
5d993e76ec
10
Gemfile
10
Gemfile
|
@ -3,19 +3,15 @@ platform = RbConfig::CONFIG["host_os"].downcase
|
|||
|
||||
source "http://rubygems.org"
|
||||
|
||||
gem "vagrant", :path => '.'
|
||||
gemspec
|
||||
|
||||
# Use the following gems straight from git, since Vagrant dev
|
||||
# typically coincides with it
|
||||
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
|
||||
|
||||
group :test do
|
||||
gem "rake"
|
||||
gem "contest", ">= 0.1.2"
|
||||
gem "mocha"
|
||||
end
|
||||
|
|
|
@ -25,8 +25,8 @@ Gem::Specification.new do |s|
|
|||
|
||||
s.add_development_dependency "rake"
|
||||
s.add_development_dependency "contest", ">= 0.1.2"
|
||||
s.add_development_dependency "minitest", "~> 2.5.1"
|
||||
s.add_development_dependency "mocha"
|
||||
s.add_development_dependency "ruby-debug"
|
||||
|
||||
s.files = `git ls-files`.split("\n")
|
||||
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
|
||||
|
|
Loading…
Reference in New Issue