Module: Pluto
- Defined in:
- lib/pluto/update.rb,
lib/pluto/update/site_fetcher.rb,
lib/pluto/update/feed_refresher.rb,
lib/pluto/update/site_refresher.rb
Defined Under Namespace
Classes: FeedRefresher, SiteFetcher, SiteRefresher
Class Method Summary collapse
-
.refresh_feeds ⇒ Object
refresh == fetch+parse+update.
-
.refresh_sites ⇒ Object
refresh == fetch+parse+update.
-
.update_feeds ⇒ Object
convenience aliases w/ update_ – use refresh (only) - why? why not??.
- .update_sites ⇒ Object
Class Method Details
.refresh_feeds ⇒ Object
refresh == fetch+parse+update
18 19 20 |
# File 'lib/pluto/update.rb', line 18 def self.refresh_feeds ## refresh == fetch+parse+update FeedRefresher.new.refresh_feeds end |
.refresh_sites ⇒ Object
refresh == fetch+parse+update
22 23 24 |
# File 'lib/pluto/update.rb', line 22 def self.refresh_sites ## refresh == fetch+parse+update SiteRefresher.new.refresh_sites end |
.update_feeds ⇒ Object
convenience aliases w/ update_ – use refresh (only) - why? why not??
27 |
# File 'lib/pluto/update.rb', line 27 def self.update_feeds() refresh_feeds; end |
.update_sites ⇒ Object
28 |
# File 'lib/pluto/update.rb', line 28 def self.update_sites() refresh_sites; end |