Class: Miteru::Feeds::TweetFeed
- Defined in:
- lib/miteru/feeds/tweetfeed.rb
Constant Summary
Constants inherited from Base
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(base_url = "https://api.tweetfeed.live") ⇒ TweetFeed
constructor
A new instance of TweetFeed.
- #urls ⇒ Object
Methods inherited from Base
#call, #decomposed_urls, inherited, #source
Methods inherited from Service
Constructor Details
#initialize(base_url = "https://api.tweetfeed.live") ⇒ TweetFeed
Returns a new instance of TweetFeed.
6 7 8 |
# File 'lib/miteru/feeds/tweetfeed.rb', line 6 def initialize(base_url = "https://api.tweetfeed.live") super end |
Instance Method Details
#urls ⇒ Object
10 11 12 13 |
# File 'lib/miteru/feeds/tweetfeed.rb', line 10 def urls data = get_json("/v1/today/url") data.filter_map { |item| item["value"] } end |