Class: OpsDeploy::CLI::Notifier::Messages
- Inherits:
-
Object
- Object
- OpsDeploy::CLI::Notifier::Messages
- Defined in:
- lib/ops_deploy/cli/notifier.rb
Instance Attribute Summary collapse
-
#failure ⇒ Object
Returns the value of attribute failure.
-
#info ⇒ Object
Returns the value of attribute info.
-
#success ⇒ Object
Returns the value of attribute success.
Instance Method Summary collapse
-
#initialize ⇒ Messages
constructor
A new instance of Messages.
Constructor Details
#initialize ⇒ Messages
Returns a new instance of Messages.
47 48 49 50 51 |
# File 'lib/ops_deploy/cli/notifier.rb', line 47 def initialize @info = [] @success = [] @failure = [] end |
Instance Attribute Details
#failure ⇒ Object
Returns the value of attribute failure.
45 46 47 |
# File 'lib/ops_deploy/cli/notifier.rb', line 45 def failure @failure end |
#info ⇒ Object
Returns the value of attribute info.
45 46 47 |
# File 'lib/ops_deploy/cli/notifier.rb', line 45 def info @info end |
#success ⇒ Object
Returns the value of attribute success.
45 46 47 |
# File 'lib/ops_deploy/cli/notifier.rb', line 45 def success @success end |