module Roda::RodaPlugins::IPFromHeader::RequestMethods

def ip

Fallback to the default behavior if not present.
Return the IP address continained in the configured header, if present.
def ip
  @env[roda_class.opts[:ip_from_header_env_key]] || super
end