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)


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

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

Instance Attribute Details

#domainString? (readonly)

Returns the value of attribute domain.

Returns:

  • (String, nil)


133
134
135
# File 'sig/types.rbs', line 133

def domain
  @domain
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


131
132
133
# File 'sig/types.rbs', line 131

def name
  @name
end

#pathString? (readonly)

Returns the value of attribute path.

Returns:

  • (String, nil)


134
135
136
# File 'sig/types.rbs', line 134

def path
  @path
end

#valueString (readonly)

Returns the value of attribute value.

Returns:

  • (String)


132
133
134
# File 'sig/types.rbs', line 132

def value
  @value
end