method
rack_value_for
v6.1.7.7 -
Show latest stable
- Class:
ActionController::Renderer
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