Sha256: 2f6b44c9b008c8f6c854109642d20473f9925d2f75d04046c5afb8d2cd0d512d
Contents?: true
Size: 280 Bytes
Versions: 12
Compression:
Stored size: 280 Bytes
Contents
module LitmusPaper class ForcedHealth attr_reader :summary def initialize(health, summary) @health = health @summary = summary end def value @health end def ok? @health > 0 end def forced? true end end end
Version data entries
12 entries across 12 versions & 1 rubygems