Method: Html2rss::AttributePostProcessors::Base.validate_args!

Defined in:
lib/html2rss/attribute_post_processors/base.rb

.validate_args!(_value, _context) ⇒ Object

This method validates the arguments passed to the post processor. Must be implemented by subclasses.

Raises:

  • (NotImplementedError)
[View source]

46
47
48
# File 'lib/html2rss/attribute_post_processors/base.rb', line 46

def self.validate_args!(_value, _context)
  raise NotImplementedError, 'You must implement the `validate_args!` method in the post processor'
end