Sha256: 442325573b3c101671c98fe5bc24c0e9e3d0be6452aa32b5afbeec0e050dd315
Contents?: true
Size: 381 Bytes
Versions: 69
Compression:
Stored size: 381 Bytes
Contents
module God module Conditions class Always < PollCondition attr_accessor :what def initialize self.info = "always" end def valid? valid = true valid &= complain("Attribute 'what' must be specified", self) if self.what.nil? valid end def test @what end end end end
Version data entries
69 entries across 69 versions & 21 rubygems