Class: Crawlberg::FaviconInfo

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeFaviconInfo

Returns a new instance of FaviconInfo.

Parameters:

  • url: (String)
  • rel: (String)
  • sizes: (String)
  • mime_type: (String)


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

def initialize: (?url: String, ?rel: String, ?sizes: String, ?mime_type: String) -> void

Instance Attribute Details

#mime_typeString?

Returns the value of attribute mime_type.

Returns:

  • (String, nil)


335
336
337
# File 'sig/types.rbs', line 335

def mime_type
  @mime_type
end

#relString?

Returns the value of attribute rel.

Returns:

  • (String, nil)


333
334
335
# File 'sig/types.rbs', line 333

def rel
  @rel
end

#sizesString?

Returns the value of attribute sizes.

Returns:

  • (String, nil)


334
335
336
# File 'sig/types.rbs', line 334

def sizes
  @sizes
end

#urlString?

Returns the value of attribute url.

Returns:

  • (String, nil)


332
333
334
# File 'sig/types.rbs', line 332

def url
  @url
end