Sha256: 6cb44cb919d58704b3f1295eb29ef2877d00c6947b980b6f2b452ccefcd697d0
Contents?: true
Size: 226 Bytes
Versions: 8
Compression:
Stored size: 226 Bytes
Contents
module RsegEngine class Engine def initialize @running = true end def stop @running = false end def run @running = true end def running? @running end end end
Version data entries
8 entries across 8 versions & 5 rubygems