Gemfile分平台加载gem
Posted 爱玩的安哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Gemfile分平台加载gem相关的知识,希望对你有一定的参考价值。
Gemfile分平台加载gem区分平台以便加载不同的web server,象tzinfo-data只适用于windows
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
if RUBY_PLATFORM=~ /win32|mingw/
gem ‘tzinfo-data‘
gem ‘thin‘
else
gem ‘puma‘
end
以上是关于Gemfile分平台加载gem的主要内容,如果未能解决你的问题,请参考以下文章
Bundler:始终在 Gemfile 中使用最新版本的 git 分支
Beanstalk 的 Gemfile git 分支无法捆绑安装