forked from cloudfoundry-community-attic/bosh-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbosh-bootstrap.gemspec
33 lines (29 loc) · 1.19 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
# -*- 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 = ["[email protected]"]
gem.description = %q{Bootstrap a micro bosh universe from one CLI}
gem.summary = <<-EOS
bosh-bootstrap configures and deploys a microbosh 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 "cyoi", "~> 0.5"
gem.add_dependency "fog", "~> 1.11"
gem.add_dependency "readwritesettings", "~> 3.0"
gem.add_dependency "thor", "~> 0.18"
gem.add_dependency "redcard"
gem.add_development_dependency "rake"
gem.add_development_dependency "rspec"
gem.add_development_dependency "fakeweb"
end