class FeedSearcher

Constants

VERSION

Attributes

options[R]
url[R]

Public Class Methods

new(url, options = {}) click to toggle source
# File lib/feed_searcher.rb, line 15
def initialize(url, options = {})
  @url     = url
  @options = options
end

Public Instance Methods

Private Instance Methods

fetch() click to toggle source
# File lib/feed_searcher.rb, line 26
def fetch
  Fetcher.fetch(url, options)
end