forked from jedi4ever/veewee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
veewee.gemspec
33 lines (27 loc) · 1.18 KB
/
veewee.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/veewee/version", __FILE__)
Gem::Specification.new do |s|
s.name = "veewee"
s.version = Veewee::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Patrick Debois", "Ringo De Smet"]
s.email = ["patrick.debois@jedi.be", "ringo.desmet@gmail.com"]
s.homepage = "http://github.com/jedi4ever/veewee/"
s.summary = %q{Vagrant box creation}
s.description = %q{Expand the 'vagrant box' command to support the creation of base boxes from scratch}
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "veewee"
s.add_dependency "vagrant", "~> 0.8.2"
s.add_dependency "net-ssh", "~> 2.1.0"
s.add_dependency "popen4", "~> 0.1.2"
s.add_dependency "thor", "~> 0.14.6"
s.add_dependency "highline", "~> 1.6.1"
s.add_dependency "progressbar"
s.add_dependency "cucumber", "~> 1.0.2"
s.add_dependency "rspec", "~> 2.5.0"
#s.add_dependency "simon", "~> 0.1.1"
s.add_development_dependency "bundler", ">= 1.0.0"
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'
end