method

rack_value_for

rails latest stable - Class: ActionController::Renderer

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v7.0.0) is shown here.

rack_value_for(key, value)
private

No documentation available.

# File actionpack/lib/action_controller/renderer.rb, line 130
      def rack_value_for(key, value)
        case key
        when :https
          value ? "on" : "off"
        when :method
          -value.upcase
        else
          value
        end
      end