Sha256: 08eb824f1858c81ffc38412cabbfcd98456304440dfcdedab40ef213bcff4848
Contents?: true
Size: 547 Bytes
Versions: 9
Compression:
Stored size: 547 Bytes
Contents
class Service { installed is false running is false procedure install { conditions { this.installed is false } effects { this.installed is true } } procedure uninstall { conditions { this.installed is true } effects { this.installed is false } } procedure start { conditions { this.installed is true this.running is false } effects { this.running is true } } procedure stop { conditions { this.installed is true this.running is true } effects { this.running is false } } }
Version data entries
9 entries across 9 versions & 2 rubygems