1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-04 22:59:47 +00:00

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
This commit is contained in:
Toshi MARUYAMA 2015-03-14 16:30:13 +00:00
parent 242eb5db5d
commit 50a8bd452b

View File

@ -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")