# File lib/compass-rails.rb, line 142 def env_production? if defined?(::Rails) && ::Rails.respond_to?(:env) ::Rails.env.production? elsif defined?(RAILS_ENV) RAILS_ENV == "production" end end