1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #18240 from shunsukeaida/add_tzinfo_data_to_plugin_gemfile

plugin's gemfile also needs tzinfo-data in Windows
This commit is contained in:
Rafael Mendonça França 2014-12-29 16:12:19 -03:00
commit d233220f29

View file

@ -45,3 +45,7 @@ end
# gem 'byebug', group: [:development, :test]
<%- end -%>
<% end -%>
<% if RUBY_PLATFORM.match(/bccwin|cygwin|emx|mingw|mswin|wince|java/) -%>
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
<% end -%>