Method: Deli::Query#render
- Defined in:
- lib/deli/query.rb
#render(params) ⇒ Object
108 109 110 111 112 113 114 |
# File 'lib/deli/query.rb', line 108 def render(params) params = parse(params) matching(params).inject({}) do |hash, param| hash[param.key] = param.render(params[param.key]) hash end end |