Sha256: 381e70ecf4c59e3aea9f909163ab770500e27c7b0bbaef0d7ff9eb9e988e2a57
Contents?: true
Size: 417 Bytes
Versions: 18
Compression:
Stored size: 417 Bytes
Contents
# frozen_string_literal: true module Mihari module Analyzers class Basic < Base attr_reader :title attr_reader :description attr_reader :artifacts attr_reader :tags def initialize(title:, description:, artifacts:, tags: []) super() @title = title @description = description @artifacts = artifacts @tags = tags end end end end
Version data entries
18 entries across 18 versions & 1 rubygems