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

Returns a new instance of SorbetIntro.



229
230
231
232
# File 'lib/spoom/coverage/report.rb', line 229

def initialize(sorbet_intro_commit: nil, sorbet_intro_date: nil)
  @sorbet_intro_commit = sorbet_intro_commit
  @sorbet_intro_date = sorbet_intro_date
end

Instance Method Details

#erbObject



235
236
237
238
239
240
241
242
# File 'lib/spoom/coverage/report.rb', line 235

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