Method: Restify::Relation#expand

Defined in:
lib/restify/relation.rb

#expand(params) ⇒ Object



36
37
38
39
40
41
42
43
# File 'lib/restify/relation.rb', line 36

def expand(params)
  params    = convert params
  variables = extract! params

  uri = @template.expand variables
  uri.query_values = params if params.any?
  uri
end