class Osakana::Enrichers::Base

Public Instance Methods

domain_to_ipv4(_domain) click to toggle source
# File lib/osakana/enrichers/base.rb, line 6
def domain_to_ipv4(_domain)
  raise NotImplementedError, "You must implement #{self.class}##{__method__}"
end
ipv4_to_domain(_ipv4) click to toggle source
# File lib/osakana/enrichers/base.rb, line 10
def ipv4_to_domain(_ipv4)
  raise NotImplementedError, "You must implement #{self.class}##{__method__}"
end