Skip to content
代码片段 群组 项目
提交 f9119150 编辑于 作者: Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
浏览文件

Merge branch 'rs-rails-env-predicates' into 'master'

Fix two places where we should be using `Rails.env.development?`

See merge request !550
No related branches found
No related tags found
无相关合并请求
......@@ -16,7 +16,7 @@
= render 'layouts/google_analytics' if extra_config.has_key?('google_analytics_id')
= render 'layouts/piwik' if extra_config.has_key?('piwik_url') && extra_config.has_key?('piwik_site_id')
= render 'layouts/bootlint' if Rails.env == 'development'
= render 'layouts/bootlint' if Rails.env.development?
-# Atom feed
- if current_user
......
if Rails.env == 'development'
if Rails.env.development?
require 'rack-mini-profiler'
# initialization is skipped so trigger it
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册