class Grape::Path::PartsCache

def initialize

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