module Jellyfish::NormalizedPath
Public Instance Methods
path_info()
click to toggle source
Calls superclass method
# File lib/jellyfish/normalized_path.rb, line 8 def path_info path = URI.decode_www_form_component(super, Encoding.default_external) if path.start_with?('/') then path else "/#{path}" end end