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