Class: Grape::Path::PartsCache
- Inherits:
-
Util::Cache
- Object
- Util::Cache
- Grape::Path::PartsCache
- Defined in:
- lib/grape/path.rb
Instance Attribute Summary
Attributes inherited from Util::Cache
Instance Method Summary collapse
-
#initialize ⇒ PartsCache
constructor
A new instance of PartsCache.
Constructor Details
#initialize ⇒ PartsCache
Returns a new instance of PartsCache.
67 68 69 70 71 72 |
# File 'lib/grape/path.rb', line 67 def initialize super @cache = Hash.new do |h, parts| h[parts] = Grape::Router.normalize_path(parts.join('/')) end end |