class PublicSuffix::Rule::Normal

Normal represents a standard rule (e.g. com).

Public Instance Methods

decompose(domain) click to toggle source

Decomposes the domain name according to rule properties.

@param [String, to_s] name The domain name to decompose @return [Array<String>] The array with [trd + sld, tld].

# File lib/public_suffix/rule.rb, line 199
def decompose(domain)
  suffix = parts.join('\.')
  matches = domain.to_s.match(/^(.*)\.(#{suffix})$/)
  matches ? matches[1..2] : [nil, nil]
end
parts() click to toggle source

dot-split rule value and returns all rule parts in the order they appear in the value.

@return [Array<String>]

# File lib/public_suffix/rule.rb, line 209
def parts
  @value.split(DOT)
end
rule() click to toggle source

Gets the original rule definition.

@return [String] The rule definition.

# File lib/public_suffix/rule.rb, line 191
def rule
  value
end