class Grape::Router::BaseRoute::CaptureIndexCache

def initialize

def initialize
  super
  @cache = Hash.new do |h, index|
    h[index] = "_#{index}"
  end
end