Class: Crawlberg::CookieInfo

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCookieInfo

Returns a new instance of CookieInfo.

Parameters:

  • name: (String)
  • value: (String)
  • domain: (String)
  • path: (String)


291
# File 'sig/types.rbs', line 291

def initialize: (?name: String, ?value: String, ?domain: String, ?path: String) -> void

Instance Attribute Details

#domainString?

Returns the value of attribute domain.

Returns:

  • (String, nil)


288
289
290
# File 'sig/types.rbs', line 288

def domain
  @domain
end

#nameString?

Returns the value of attribute name.

Returns:

  • (String, nil)


286
287
288
# File 'sig/types.rbs', line 286

def name
  @name
end

#pathString?

Returns the value of attribute path.

Returns:

  • (String, nil)


289
290
291
# File 'sig/types.rbs', line 289

def path
  @path
end

#valueString?

Returns the value of attribute value.

Returns:

  • (String, nil)


287
288
289
# File 'sig/types.rbs', line 287

def value
  @value
end