vagrant/vagrant.gemspec

36 lines
1.3 KiB
Ruby
Raw Normal View History

$:.unshift File.expand_path("../lib", __FILE__)
require "vagrant/version"
2010-04-15 19:54:39 +00:00
Gem::Specification.new do |s|
s.name = "vagrant"
s.version = Vagrant::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Mitchell Hashimoto", "John Bender"]
s.email = ["mitchell.hashimoto@gmail.com", "john.m.bender@gmail.com"]
s.homepage = "http://vagrantup.com"
s.summary = "Build and distribute virtualized development environments."
s.description = "Vagrant is a tool for building and distributing virtualized development environments."
2010-08-20 05:25:23 +00:00
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "vagrant"
2010-04-15 19:54:39 +00:00
s.add_dependency "archive-tar-minitar", "= 0.5.2"
s.add_dependency "erubis", "~> 2.7.0"
s.add_dependency "json", "~> 1.5.1"
s.add_dependency "net-ssh", "~> 2.1.4"
s.add_dependency "net-scp", "~> 1.0.4"
2011-01-07 09:26:18 +00:00
s.add_dependency "i18n", "~> 0.5.0"
s.add_dependency "thor", "~> 0.14.6"
s.add_dependency "virtualbox", "~> 0.9.1"
2010-04-15 19:54:39 +00:00
s.add_development_dependency "rake"
s.add_development_dependency "contest", ">= 0.1.2"
s.add_development_dependency "mocha"
s.add_development_dependency "ruby-debug"
2010-08-20 05:25:23 +00:00
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
2010-04-15 19:54:39 +00:00
end