Method: Olivander::ApplicationHelper#sidebar_context_suffix
- Defined in:
- app/helpers/olivander/application_helper.rb
#sidebar_context_suffix ⇒ Object
160 161 162 163 164 165 166 167 168 |
# File 'app/helpers/olivander/application_helper.rb', line 160 def suffix = nil suffix ||= ENV['CLIENT_ENVIRONMENT'] parts = request.host.split('.') suffix ||= parts.first.split('-').last.downcase if request.host.include?('-') suffix ||= 'local' if %w[localhost test].include?(parts.last.downcase) suffix ||= 'production' suffix end |