class Grape::Path::PartsCache

def initialize

def initialize
  super
  @cache = Hash.new do |h, parts|
    h[parts] = Grape::Util::PathNormalizer.call(parts.join('/'))
  end
end