Sha256: 4bf41061c46dcdf1a76c71ff8d71faf176f4b54920643ca51e6a7008ad78cf0f

Contents?: true

Size: 338 Bytes

Versions: 4

Compression:

Stored size: 338 Bytes

Contents

module Html2rss
  ##
  # Provides a namespace for attribute post processors.
  module AttributePostProcessors
    def self.get_processor(name)
      @get_processor ||= Hash.new do |processors, key|
        processors[key] = Utils.get_class_from_name(key, 'AttributePostProcessors')
      end

      @get_processor[name]
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
html2rss-0.9.0 lib/html2rss/attribute_post_processors.rb
html2rss-0.8.2 lib/html2rss/attribute_post_processors.rb
html2rss-0.8.1 lib/html2rss/attribute_post_processors.rb
html2rss-0.8.0 lib/html2rss/attribute_post_processors.rb