diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-11-26 04:39:20 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-11-26 04:39:20 +0000 |
commit | 107dd20c0247c9abbc12e3910f4c157edc8c7748 (patch) | |
tree | 8724a70e091e3a675fb0d7f1de173ada91e8ae1b /Gemfile | |
parent | a199c068999614bddb24862f4fb648e3c1b2c089 (diff) | |
download | redmine-107dd20c0247c9abbc12e3910f4c157edc8c7748.tar.gz redmine-107dd20c0247c9abbc12e3910f4c157edc8c7748.zip |
Gemfile: add :x64_mingw platform missing in r13651
git-svn-id: http://svn.redmine.org/redmine/trunk@13654 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -11,7 +11,7 @@ gem "protected_attributes" gem "actionpack-action_caching" # Windows does not include zoneinfo files, so bundle the tzinfo-data gem -gem 'tzinfo-data', platforms: [:mingw, :mswin, :jruby] +gem 'tzinfo-data', platforms: [:mingw, :x64_mingw, :mswin, :jruby] gem "rbpdf", "~> 1.18.2" # Optional gem for LDAP authentication @@ -25,7 +25,7 @@ group :openid do gem "rack-openid" end -platforms :mri, :mingw do +platforms :mri, :mingw, :x64_mingw do # Optional gem for exporting the gantt to a PNG file, not supported with jruby group :rmagick do gem "rmagick", ">= 2.0.0" |