bosh-cloudfoundry.gemspec in bosh-cloudfoundry-0.6.1 vs bosh-cloudfoundry.gemspec in bosh-cloudfoundry-0.7.0.alpha.1
- old
+ new
@@ -1,31 +1,23 @@
-# -*- encoding: utf-8 -*-
-lib = File.expand_path('../lib', __FILE__)
-$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
-require 'bosh-cloudfoundry/version'
+# coding: utf-8
-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::Specification.new do |spec|
+ spec.name = "bosh-cloudfoundry"
+ spec.version = "0.7.0.alpha.1"
+ spec.authors = ["Dr Nic Williams"]
+ spec.email = ["drnicwilliams@gmail.com"]
+ spec.description = %q{Create & manage Cloud Foundry deployments}
+ spec.summary = %q{Create & manage Cloud Foundry deployments using bosh in AWS & OpenStack}
+ spec.homepage = ""
+ spec.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"]
+ spec.files = `git ls-files`.split($/)
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
+ spec.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"
+ spec.add_runtime_dependency "bosh_cli", "~> 1.5.0.pre"
+
+ spec.add_development_dependency "rake"
+ spec.add_development_dependency "bundler", "~> 1.3"
+ spec.add_development_dependency "rspec", "~> 2.13.0"
end