class Bifrossht::HostFilter::Base

Attributes

config[RW]

Public Class Methods

new(config) click to toggle source
# File lib/bifrossht/host_filter/base.rb, line 6
def initialize(config)
  @config = config
end

Public Instance Methods

apply(host) click to toggle source
# File lib/bifrossht/host_filter/base.rb, line 14
def apply(host)
  host
end
match(_host) click to toggle source
# File lib/bifrossht/host_filter/base.rb, line 10
def match(_host)
  false
end