Class: CM::Resource::Concourse
- Inherits:
-
Object
- Object
- CM::Resource::Concourse
- Defined in:
- lib/CM/resource/concourse.rb
Instance Method Summary collapse
-
#initialized?(options = {}) ⇒ Boolean
—————————————————————————– Checks.
-
#normalize(reload) ⇒ Object
—————————————————————————– Plugin interface.
-
#operation_deploy ⇒ Object
—————————————————————————– Operations.
-
#operation_destroy ⇒ Object
—.
Instance Method Details
#initialized?(options = {}) ⇒ Boolean
Checks
17 18 19 |
# File 'lib/CM/resource/concourse.rb', line 17 def initialized?( = {}) true end |
#normalize(reload) ⇒ Object
Plugin interface
9 10 11 12 |
# File 'lib/CM/resource/concourse.rb', line 9 def normalize(reload) super yield if block_given? end |
#operation_deploy ⇒ Object
Operations
27 28 29 30 31 |
# File 'lib/CM/resource/concourse.rb', line 27 def operation_deploy super do data = {} end end |
#operation_destroy ⇒ Object
35 36 37 38 39 |
# File 'lib/CM/resource/concourse.rb', line 35 def operation_destroy super do data = {} end end |