Sha256: d826e18403c3f465bd53e865dabf9166d0973d7401c0b9a434aac1427f38d607
Contents?: true
Size: 521 Bytes
Versions: 4
Compression:
Stored size: 521 Bytes
Contents
module Feedzirra module Backend # Class exists for cases where you don't want Feedzirra to remember what # it has fetched. If this backend is selected, user needs to pass arguments # in the form of a Feed object to the Reader class to help Feedzirra know when # a page hasn't changed, and which feed entries have been updated. class DevNull def initialize(options = { }) end def get(url) end def set(url, result) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems