Skip to content

Commit

Permalink
Bump version to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
woods committed Nov 12, 2014
1 parent bd00ee7 commit 76b1be3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
1 change: 1 addition & 0 deletions Rakefile
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.8.1
0.9.0
19 changes: 10 additions & 9 deletions capistrano-helpers.gemspec
Expand Up @@ -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"
Expand All @@ -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",
Expand All @@ -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<capistrano>, ["~> 2.0"])
s.add_runtime_dependency(%q<git>, [">= 0"])
s.add_runtime_dependency(%q<versionomy>, [">= 0"])
else
s.add_dependency(%q<capistrano>, ["~> 2.0"])
s.add_dependency(%q<git>, [">= 0"])
s.add_dependency(%q<versionomy>, [">= 0"])
end
else
s.add_dependency(%q<capistrano>, ["~> 2.0"])
s.add_dependency(%q<git>, [">= 0"])
s.add_dependency(%q<versionomy>, [">= 0"])
end
end

0 comments on commit 76b1be3

Please sign in to comment.