Sha256: 2ffd7eea3b785e5a497d18912bab814d7a3fd2d3fc870d2ca06bd957666c2e83
Contents?: true
Size: 279 Bytes
Versions: 75
Compression:
Stored size: 279 Bytes
Contents
module Insist::Assert # Assert something is true. # # This will raise Insist::Failure with the given message if the 'truthy' # value is false. def assert(truthy, message) raise Insist::Failure.new(message) if !truthy end # def assert end # module Insist::Assert
Version data entries
75 entries across 71 versions & 18 rubygems