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)


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

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)


326
327
328
# File 'sig/types.rbs', line 326

def mime_type
  @mime_type
end

#relString?

Returns the value of attribute rel.

Returns:

  • (String, nil)


324
325
326
# File 'sig/types.rbs', line 324

def rel
  @rel
end

#sizesString?

Returns the value of attribute sizes.

Returns:

  • (String, nil)


325
326
327
# File 'sig/types.rbs', line 325

def sizes
  @sizes
end

#urlString?

Returns the value of attribute url.

Returns:

  • (String, nil)


323
324
325
# File 'sig/types.rbs', line 323

def url
  @url
end