forked from cloudfoundry-community-attic/bosh-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbosh-bootstrap.gemspec
More file actions
34 lines (31 loc) · 1.25 KB
/
Copy pathbosh-bootstrap.gemspec
File metadata and controls
34 lines (31 loc) · 1.25 KB
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
# -*- 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
Now very simple to bootstrap a micro BOSH from a single, local CLI.
The bootstrapper first creates an inception VM and then uses
bosh_deployer (bosh micro deploy) to deploy micro BOSH from
an available stemcell.
EOS
gem.homepage = "https://github.com/StarkAndWayne/bosh-bootstrap"
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-scp"
gem.add_dependency "fog"
gem.add_dependency "escape"
gem.add_dependency "bosh_cli"
gem.add_development_dependency "bosh_deployer"
end