forked from cloudfoundry-community-attic/bosh-cloudfoundry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbosh-cloudfoundry.gemspec
31 lines (28 loc) · 1.21 KB
/
bosh-cloudfoundry.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bosh-cloudfoundry/version'
Gem::Specification.new do |gem|
gem.name = "bosh-cloudfoundry"
gem.version = Bosh::Cloudfoundry::VERSION
gem.authors = ["Dr Nic Williams"]
gem.email = ["drnicwilliams@gmail.com"]
gem.description = %q{Create and manage your Cloud Foundry deployments}
gem.summary = <<-EOS
Create and manage your Cloud Foundry deployments on AWS and OpenStack
with a simple command line tool (a plugin for BOSH CLI in fact).
Start small, grow big, and constantly upgrade your various Cloud Foundry
deployments.
EOS
gem.homepage = "https://github.com/StarkAndWayne/bosh-cloudfoundry"
gem.license = "MIT"
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 "bosh_cli", ">=1.0.3"
gem.add_dependency "rake" # file_utils sh helper
gem.add_dependency "net-dns"
gem.add_dependency "fog", "~>1.9.0"
gem.add_development_dependency "rspec"
end