Sha256: 090516dadccd0d1dc06fcee4a1364b267aa7630b7bc48d38ce60dfcadcd0325f
Contents?: true
Size: 303 Bytes
Versions: 39
Compression:
Stored size: 303 Bytes
Contents
# frozen_string_literal: true module WPScan module DB class Sponsor # @return [ Hash ] def self.text @text ||= file_path.exist? ? File.read(file_path).chomp : '' end def self.file_path @file_path ||= DB_DIR.join('sponsor.txt') end end end end
Version data entries
39 entries across 39 versions & 1 rubygems