Skip to content

Commit

Permalink
Use the latest version of capistrano-bundler (#244)
Browse files Browse the repository at this point in the history
* Use the latest version of capistrano-bundler

capistrano-bundler 2.0.0 has been released and fixes Bundler deprecation
warnings. This commit updates our gemspec so that capistrano-bundler
2.0.0 can be used with capistrano-rails.

* Be more defensive in version range
  • Loading branch information
mattbrictson authored Jul 12, 2020
1 parent e44e9c8 commit 7d19e7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion capistrano-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |gem|
gem.require_paths = ["lib"]

gem.add_dependency 'capistrano', '~> 3.1'
gem.add_dependency 'capistrano-bundler', '~> 1.1'
gem.add_dependency 'capistrano-bundler', '>= 1.1', '< 3'

gem.add_development_dependency 'danger'
end

0 comments on commit 7d19e7c

Please sign in to comment.