From 6015f943f4734c8744ff1534f9e455bb3f01b874 Mon Sep 17 00:00:00 2001 From: Maciek Dubinski Date: Sun, 15 May 2016 11:57:09 +0200 Subject: [PATCH] Explicit requirement of Ruby >= 2.0, reflection of that in the changelog. --- CHANGELOG.md | 3 +-- capistrano.gemspec | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1523d70a..ca86b150 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,8 +30,7 @@ and how to configure it, visit the ### Potentially breaking changes: -* Drop support for Ruby 1.9.3 (Capistrano may still work with 1.9.3, but it is - no longer officially supported) +* Drop support for Ruby 1.9.3 (Capistrano does no longer work with 1.9.3) * Git version 1.6.3 or greater is now required * Remove 'vendor/bundle' from default :linked_dirs (@ojab) * Old versions of SSHKit (before 1.9.0) are no longer supported diff --git a/capistrano.gemspec b/capistrano.gemspec index 6a6513b2..3d66af31 100644 --- a/capistrano.gemspec +++ b/capistrano.gemspec @@ -19,7 +19,7 @@ Gem::Specification.new do |gem| gem.licenses = ["MIT"] - gem.required_ruby_version = ">= 1.9.3" + gem.required_ruby_version = ">= 2.0" gem.add_dependency "airbrussh", ">= 1.0.0" gem.add_dependency "i18n" gem.add_dependency "rake", ">= 10.0.0"