class Spoom::Coverage::Cards::SorbetIntro

def erb

def erb
  <<~ERB
    <div class="text-center" style="margin-top: 30px">
      Typchecked by Sorbet since <b>#{@sorbet_intro_date&.strftime("%F")}</b>
      (commit <b>#{@sorbet_intro_commit}</b>).
    </div>
  ERB
end

def initialize(sorbet_intro_commit: nil, sorbet_intro_date: nil) # rubocop:disable Lint/MissingSuper

rubocop:disable Lint/MissingSuper
def initialize(sorbet_intro_commit: nil, sorbet_intro_date: nil) # rubocop:disable Lint/MissingSuper
  @sorbet_intro_commit = sorbet_intro_commit
  @sorbet_intro_date = sorbet_intro_date
end