Class: WikipediaRestClient::FeaturedArticle
- Inherits:
-
Object
- Object
- WikipediaRestClient::FeaturedArticle
- Defined in:
- lib/wikipedia_rest_client/featured_article.rb
Instance Method Summary collapse
-
#featured_article(json) ⇒ Object
Today’s Featured Article from Wikipedia page.
-
#image_of_the_day ⇒ Object
Image of the day content from Wikipedia page.
Instance Method Details
#featured_article(json) ⇒ Object
Today’s Featured Article from Wikipedia page.
7 8 9 10 11 12 13 |
# File 'lib/wikipedia_rest_client/featured_article.rb', line 7 def featured_article(json) @data = json if @data["tfa"] then @data["tfa"] end end |
#image_of_the_day ⇒ Object
Image of the day content from Wikipedia page.
16 17 18 |
# File 'lib/wikipedia_rest_client/featured_article.rb', line 16 def image_of_the_day @data["image"]["image"]["source"] end |