From 76b1be37acb399d8999a9a507342ef705ae82d37 Mon Sep 17 00:00:00 2001 From: Scott Woods Date: Tue, 11 Nov 2014 19:40:11 -0500 Subject: [PATCH] Bump version to 0.9.0 --- Rakefile | 1 + VERSION | 2 +- capistrano-helpers.gemspec | 19 ++++++++++--------- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/Rakefile b/Rakefile index 8907f10..7490eb6 100644 --- a/Rakefile +++ b/Rakefile @@ -10,6 +10,7 @@ begin gem.email = "team@westarete.com" gem.homepage = "http://github.com/westarete/capistrano-helpers" gem.authors = ["Scott Woods"] + gem.license = "MIT" gem.add_dependency('capistrano', '~> 2.0') gem.add_dependency('git') end diff --git a/VERSION b/VERSION index 6f4eebd..ac39a10 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.8.1 +0.9.0 diff --git a/capistrano-helpers.gemspec b/capistrano-helpers.gemspec index 802f755..4cfd45c 100644 --- a/capistrano-helpers.gemspec +++ b/capistrano-helpers.gemspec @@ -2,17 +2,18 @@ # DO NOT EDIT THIS FILE DIRECTLY # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' # -*- encoding: utf-8 -*- +# stub: capistrano-helpers 0.9.0 ruby lib Gem::Specification.new do |s| s.name = "capistrano-helpers" - s.version = "0.8.2" + s.version = "0.9.0" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= + s.require_paths = ["lib"] s.authors = ["Scott Woods"] - s.date = "2013-11-06" + s.date = "2014-11-12" s.description = "A set of optional extensions to capistrano to make common tasks easier." s.email = "team@westarete.com" - s.license = 'MIT' s.extra_rdoc_files = [ "LICENSE", "README.rdoc" @@ -28,9 +29,12 @@ Gem::Specification.new do |s| "lib/capistrano-helpers/branch.rb", "lib/capistrano-helpers/bundler.rb", "lib/capistrano-helpers/campfire.rb", + "lib/capistrano-helpers/ding.rb", "lib/capistrano-helpers/features.rb", "lib/capistrano-helpers/gems.rb", "lib/capistrano-helpers/git.rb", + "lib/capistrano-helpers/growl.rb", + "lib/capistrano-helpers/jekyll.rb", "lib/capistrano-helpers/migrations.rb", "lib/capistrano-helpers/passenger.rb", "lib/capistrano-helpers/php.rb", @@ -44,26 +48,23 @@ Gem::Specification.new do |s| "test/test_helper.rb" ] s.homepage = "http://github.com/westarete/capistrano-helpers" - s.require_paths = ["lib"] - s.rubygems_version = "1.8.24" + s.licenses = ["MIT"] + s.rubygems_version = "2.2.2" s.summary = "A set of optional extensions to capistrano to make common tasks easier." if s.respond_to? :specification_version then - s.specification_version = 3 + s.specification_version = 4 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then s.add_runtime_dependency(%q, ["~> 2.0"]) s.add_runtime_dependency(%q, [">= 0"]) - s.add_runtime_dependency(%q, [">= 0"]) else s.add_dependency(%q, ["~> 2.0"]) s.add_dependency(%q, [">= 0"]) - s.add_dependency(%q, [">= 0"]) end else s.add_dependency(%q, ["~> 2.0"]) s.add_dependency(%q, [">= 0"]) - s.add_dependency(%q, [">= 0"]) end end