Sha256: 0d97e22c71a50142a16ec3dff09e02a7618f15ff3deac7465c093d7a458fd4a6
Contents?: true
Size: 371 Bytes
Versions: 29
Compression:
Stored size: 371 Bytes
Contents
# frozen_string_literal: true module Mihari class WhoisRecord < ActiveRecord::Base belongs_to :artifact @memo = {} class << self # # Build whois record # # @param [Stinrg] domain # # @return [WhoisRecord, nil] # def build_by_domain(domain) Enrichers::Whois.query domain end end end end
Version data entries
29 entries across 29 versions & 1 rubygems