diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2015-03-14 16:30:13 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2015-03-14 16:30:13 +0000 |
commit | 50a8bd452bfdf914a3986cbc1336469287724c6f (patch) | |
tree | cffd98b78e9eff7a91703efef8d718ab4c1df4dc /Gemfile | |
parent | 242eb5db5d70919a3a03a0e39a5fbf4738124b98 (diff) | |
download | redmine-50a8bd452bfdf914a3986cbc1336469287724c6f.tar.gz redmine-50a8bd452bfdf914a3986cbc1336469287724c6f.zip |
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
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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") |