Method: Landline::DSL::ProbeMethods#cookie

Defined in:
lib/landline/dsl/methods_probe.rb

(in Landline::Probe context) Set response cookie

See Also:

  • Cookie.new


124
125
126
127
128
129
# File 'lib/landline/dsl/methods_probe.rb', line 124

def cookie(*params, **options)
  @origin.response = (@origin.response or Landline::Response.new)
  @origin.response.add_cookie(
    Landline::Cookie.new(*params, **options)
  )
end