Skip to content
This repository has been archived by the owner on Nov 23, 2020. It is now read-only.

Commit

Permalink
Merge pull request #188 from alphagov/publish
Browse files Browse the repository at this point in the history
[#67235848] Publish gem
  • Loading branch information
Carl Massa committed Apr 23, 2014
2 parents 7f00637 + e413033 commit 5b4d31c
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 8 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
## 0.8.0 (2014-04-23)

Features:

- First release of vCloud Tools as a gem
- vCloud Tools is now a meta-gem incorporating:
- vCloud Core
- vCloud Edge Gateway
- vCloud Launcher
- vCloud Net Launcher
- vCloud Walker

## 0.7.0 (2014-01-07)

- Storage profile can be provisioned using name only. Structure of yaml input has changed: d7a69e3
- orgVdcNetwork can be provisioned using the tool
- Integration test variable names have changed: 2f97634
- Better error messages are raised when link is not found: 26a04f4
6 changes: 6 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
require 'gem_publisher'

task :publish_gem do |t|
gem = GemPublisher.publish_if_updated("vcloud-tools.gemspec", :rubygems)
puts "Published #{gem}" if gem
end
1 change: 1 addition & 0 deletions jenkins.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash -x
set -e
bundle install --path "${HOME}/bundles/${JOB_NAME}"
bundle exec rake publish_gem
3 changes: 0 additions & 3 deletions lib/vcloud.rb

This file was deleted.

1 change: 1 addition & 0 deletions lib/vcloud/tools.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require 'vcloud/tools/version'
5 changes: 5 additions & 0 deletions lib/vcloud/tools/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module Vcloud
module Tools
VERSION = '0.8.0'
end
end
3 changes: 0 additions & 3 deletions lib/vcloud/version.rb

This file was deleted.

5 changes: 3 additions & 2 deletions vcloud-tools.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'vcloud/version'
require 'vcloud/tools/version'

Gem::Specification.new do |s|
s.name = 'vcloud-tools'
s.version = Vcloud::VERSION
s.version = Vcloud::Tools::VERSION
s.authors = ['Government Digital Service']
s.summary = %q{Tools for VMware vCloud}
s.homepage = 'https://github.com/alphagov/vcloud-tools'
Expand All @@ -22,5 +22,6 @@ Gem::Specification.new do |s|
s.add_runtime_dependency 'vcloud-launcher', '>= 0.0.3'
s.add_runtime_dependency 'vcloud-net_launcher', '>=0.0.2'
s.add_runtime_dependency 'vcloud-walker', '>= 3.2.1'
s.add_development_dependency 'gem_publisher', '1.2.0'
s.add_development_dependency 'rake'
end

0 comments on commit 5b4d31c

Please sign in to comment.