Sha256: 0572abe41ddcf35efc70b0191f6e6dc1b8b4d509237d2af7748931db53eb907a
Contents?: true
Size: 939 Bytes
Versions: 14
Compression:
Stored size: 939 Bytes
Contents
# Aruba module Aruba # Events module Events # Basic event # # This is not meant for direct use - BasicEvent.new - by users. It is # inherited by normal events # # @private class BasicEvent attr_reader :entity def initialize(entity) @entity = entity end end # Command was stopped class CommandStopped < BasicEvent; end # Command was started class CommandStarted < BasicEvent; end # An environment variable was changed class ChangedEnvironmentVariable < BasicEvent; end # An environment variable was added class AddedEnvironmentVariable < BasicEvent; end # An environment variable was deleted class DeletedEnvironmentVariable < BasicEvent; end # The working directory has changed class ChangedWorkingDirectory < BasicEvent; end # The configuration was changed class ChangedConfiguration < BasicEvent; end end end
Version data entries
14 entries across 14 versions & 3 rubygems