Gemfile in bosh-cloudfoundry-0.6.1 vs Gemfile in bosh-cloudfoundry-0.7.0.alpha.1
- old
+ new
@@ -1,8 +1,14 @@
-source "https://rubygems.org"
+source 'https://rubygems.org'
+source 'https://s3.amazonaws.com/bosh-jenkins-gems/' # for prerelease bosh_cli
-# Specify your gem's dependencies in bosh-cloudfoundry.gemspec
+# Specify your gem's dependencies in redis-cf-plugin.gemspec
gemspec
-gem "awesome_print"
-gem "rb-fsevent", "~> 0.9.1"
-gem "guard-rspec"
+bosh_cli_path = File.expand_path("~/gems/cloudfoundry/bosh/bosh_cli")
+if File.directory?(bosh_cli_path)
+ gem "bosh_cli", path: bosh_cli_path
+end
+
+group :development do
+ gem "guard-rspec"
+end
\ No newline at end of file