class Grape::Path::PartsCache
Public Class Methods
Source
# File lib/grape/path.rb, line 68 def initialize super @cache = Hash.new do |h, parts| h[parts] = Grape::Router.normalize_path(parts.join('/')) end end
Calls superclass method