class Spoom::Coverage::Cards::Card

Constants

TEMPLATE

Attributes

body[R]
title[R]

Public Class Methods

new(template: TEMPLATE, title: nil, body: nil) click to toggle source
Calls superclass method Spoom::Coverage::Template::new
# File lib/spoom/coverage/report.rb, line 98
def initialize(template: TEMPLATE, title: nil, body: nil)
  super(template: template)
  @title = title
  @body = body
end