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