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)


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

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

Instance Attribute Details

#domainString?

Returns the value of attribute domain.

Returns:

  • (String, nil)


297
298
299
# File 'sig/types.rbs', line 297

def domain
  @domain
end

#nameString?

Returns the value of attribute name.

Returns:

  • (String, nil)


295
296
297
# File 'sig/types.rbs', line 295

def name
  @name
end

#pathString?

Returns the value of attribute path.

Returns:

  • (String, nil)


298
299
300
# File 'sig/types.rbs', line 298

def path
  @path
end

#valueString?

Returns the value of attribute value.

Returns:

  • (String, nil)


296
297
298
# File 'sig/types.rbs', line 296

def value
  @value
end