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



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

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



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

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