From: Toshi MARUYAMA Date: Sat, 14 Mar 2015 16:30:13 +0000 (+0000) Subject: Gemfile: move "ffi" definition to :test group X-Git-Tag: 3.1.0~197 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=50a8bd452bfdf914a3986cbc1336469287724c6f;p=redmine.git Gemfile: move "ffi" definition to :test group Depending: selenium-webdriver -> childprocess -> ffi git-svn-id: http://svn.redmine.org/redmine/trunk@14097 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/Gemfile b/Gemfile index d96e1b49b..afbc64562 100644 --- a/Gemfile +++ b/Gemfile @@ -14,9 +14,6 @@ gem "protected_attributes" gem "actionpack-action_caching" gem "actionpack-xml_parser" -# building ffi 1.9.7 fails in Ubuntu: https://github.com/ffi/ffi/issues/414 -gem "ffi", "1.9.6" - # Windows does not include zoneinfo files, so bundle the tzinfo-data gem gem 'tzinfo-data', platforms: [:mingw, :x64_mingw, :mswin, :jruby] gem "rbpdf", "~> 1.18.5" @@ -99,6 +96,8 @@ group :test do # For running UI tests gem "capybara" gem "selenium-webdriver" + # building ffi 1.9.7 fails in Ubuntu: https://github.com/ffi/ffi/issues/414 + gem "ffi", "1.9.6" end local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")