Class: Spoom::Coverage::Cards::SorbetIntro

Inherits:
Erb show all
Extended by:
T::Sig
Defined in:
lib/spoom/coverage/report.rb

Constant Summary

Constants inherited from Card

Card::TEMPLATE

Instance Attribute Summary

Attributes inherited from Card

#body, #title

Instance Method Summary collapse

Methods inherited from Erb

#html

Methods inherited from Template

#get_binding, #html

Constructor Details

#initialize(sorbet_intro_commit: nil, sorbet_intro_date: nil) ⇒ SorbetIntro

rubocop:disable Lint/MissingSuper



244
245
246
247
# File 'lib/spoom/coverage/report.rb', line 244

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

Instance Method Details

#erbObject



250
251
252
253
254
255
256
257
# File 'lib/spoom/coverage/report.rb', line 250

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