Merge pull request #17423 from lukefx/jruby_windows_tzinfo

Added 'tzinfo-data' if we are using jruby
This commit is contained in:
Santiago Pastorino 2014-10-29 09:55:01 -02:00
commit 76bec5939c

@ -40,7 +40,7 @@ group :development, :test do
<% end -%>
end
<% if RUBY_PLATFORM.match(/bccwin|cygwin|emx|mingw|mswin|wince/) -%>
<% if RUBY_PLATFORM.match(/bccwin|cygwin|emx|mingw|mswin|wince|java/) -%>
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
<% end -%>