##// END OF EJS Templates
Gemfile: move "ffi" definition to :test group...
Toshi MARUYAMA -
r13715:50a8bd452bfd
parent child
Show More
@@ -14,9 +14,6 gem "protected_attributes"
14 gem "actionpack-action_caching"
14 gem "actionpack-action_caching"
15 gem "actionpack-xml_parser"
15 gem "actionpack-xml_parser"
16
16
17 # building ffi 1.9.7 fails in Ubuntu: https://github.com/ffi/ffi/issues/414
18 gem "ffi", "1.9.6"
19
20 # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
17 # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
21 gem 'tzinfo-data', platforms: [:mingw, :x64_mingw, :mswin, :jruby]
18 gem 'tzinfo-data', platforms: [:mingw, :x64_mingw, :mswin, :jruby]
22 gem "rbpdf", "~> 1.18.5"
19 gem "rbpdf", "~> 1.18.5"
@@ -99,6 +96,8 group :test do
99 # For running UI tests
96 # For running UI tests
100 gem "capybara"
97 gem "capybara"
101 gem "selenium-webdriver"
98 gem "selenium-webdriver"
99 # building ffi 1.9.7 fails in Ubuntu: https://github.com/ffi/ffi/issues/414
100 gem "ffi", "1.9.6"
102 end
101 end
103
102
104 local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")
103 local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")
General Comments 0
You need to be logged in to leave comments. Login now