vaguerent/Gemfile
Ilkka Laukkanen de18f1e4a6 Replace tarruby with archive-tar-minitar.
Tarruby seems to not compile on 64-bit, and even its author says to use
another library. Minitar seems to be more active than libarchive so I
used that.

Tests not fixed yet.
2010-03-09 10:38:02 -08:00

18 lines
425 B
Ruby

source :gemcutter
# Gems required for the lib to even run
gem "virtualbox", ">= 0.5.0"
gem "net-ssh", ">= 2.0.19"
gem "net-scp", ">= 1.0.2"
gem "git-style-binaries", ">= 0.1.10"
gem "json", ">= 1.2.0"
gem "archive-tar-minitar", ">= 0.5.2"
# Gems required for testing only. To install run
# gem bundle test
group :test do
gem "contest", ">= 0.1.2"
gem "mocha"
gem "ruby-debug", ">= 0.10.3" if RUBY_VERSION < '1.9'
end