aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index bbff1d9b42..e18780ab2a 100644
--- a/Gemfile
+++ b/Gemfile
@@ -79,7 +79,13 @@ group :test do
end
platforms :ruby do
- gem 'nokogiri', '>= 1.4.5'
+ if Bundler::WINDOWS
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
+ gem 'tzinfo-data'
+ gem 'nokogiri', '>= 1.6.7.rc3'
+ else
+ gem 'nokogiri', '>= 1.4.5'
+ end
# Needed for compiling the ActionDispatch::Journey parser
gem 'racc', '>=1.4.6', require: false