diff options
author | Go MAEDA <maeda@farend.jp> | 2019-01-10 03:13:49 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-01-10 03:13:49 +0000 |
commit | 62412a4e506cc5cafd86d934a5a0233946b96d54 (patch) | |
tree | c764f891195d4784c095e229cd336ede65d0fa5d /Gemfile | |
parent | da5630c12aace4cb82201bd0e1bf04d1c1531cc2 (diff) | |
download | redmine-62412a4e506cc5cafd86d934a5a0233946b96d54.tar.gz redmine-62412a4e506cc5cafd86d934a5a0233946b96d54.zip |
Require bundler >= 1.5.0 and < 2.0.0 (#30353).
git-svn-id: http://svn.redmine.org/redmine/branches/3.4-stable@17783 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,8 +1,6 @@ source 'https://rubygems.org' -if Gem::Version.new(Bundler::VERSION) < Gem::Version.new('1.5.0') - abort "Redmine requires Bundler 1.5.0 or higher (you're using #{Bundler::VERSION}).\nPlease update with 'gem update bundler'." -end +gem "bundler", ">= 1.5.0", "< 2.0.0" gem "rails", "4.2.11" gem "addressable", "2.4.0" if RUBY_VERSION < "2.0" |