Sha256: a18f6f3c58faa0aaf13a3820e32b6410605801e0f4d89f56a452304cf86b0008
Contents?: true
Size: 356 Bytes
Versions: 21
Compression:
Stored size: 356 Bytes
Contents
module LicenseFinder class License class Template TEMPLATE_PATH = ROOT_PATH.join("license", "templates") def self.named(name) new TEMPLATE_PATH.join("#{name}.txt").read end attr_reader :content def initialize(raw_content) @content = Text.normalize_punctuation(raw_content) end end end end
Version data entries
21 entries across 21 versions & 1 rubygems