forked from cloudfoundry-community-attic/bosh-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bosh-bootstrap.gemspec
39 lines (35 loc) · 1.42 KB
/
bosh-bootstrap.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
33
34
35
36
37
38
39
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bosh-bootstrap/version'
Gem::Specification.new do |gem|
gem.name = "bosh-bootstrap"
gem.version = Bosh::Bootstrap::VERSION
gem.authors = ["Dr Nic Williams"]
gem.email = ["drnicwilliams@gmail.com"]
gem.description = %q{Bootstrap a micro BOSH universe from one CLI}
gem.summary = <<-EOS
bosh-bootstrap is a command line tool that you can run on your laptop and
automatically get a microbosh (and an inception VM) deployed on either
AWS or OpenStack.
EOS
gem.homepage = "https://github.com/StarkAndWayne/bosh-bootstrap"
gem.required_ruby_version = '>= 1.9'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency "thor"
gem.add_dependency "highline"
gem.add_dependency "settingslogic"
gem.add_dependency "POpen4"
gem.add_dependency "net-ssh", "~> 2.2.1"
gem.add_dependency "net-scp", "~> 1.0.4"
gem.add_dependency "fog", "~>1.8.0"
gem.add_dependency "escape"
gem.add_dependency "redcard"
gem.add_dependency "bosh_cli"
gem.add_development_dependency "rake"
gem.add_development_dependency "rspec"
gem.add_development_dependency "activesupport", ">= 3.0.0"
end