Class: Crawlberg::FeedInfo

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeFeedInfo

Returns a new instance of FeedInfo.

Parameters:

  • url: (String)
  • title: (String)
  • feed_type: (FeedType)


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

def initialize: (?url: String, ?title: String, ?feed_type: FeedType) -> void

Instance Attribute Details

#feed_typeFeedType (readonly)

Returns the value of attribute feed_type.

Returns:



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

def feed_type
  @feed_type
end

#titleString? (readonly)

Returns the value of attribute title.

Returns:

  • (String, nil)


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

def title
  @title
end

#urlString (readonly)

Returns the value of attribute url.

Returns:

  • (String)


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

def url
  @url
end