Class: AwsAsCode::Task::Base
- Inherits:
-
Object
- Object
- AwsAsCode::Task::Base
- Defined in:
- lib/aws_as_code/task/base.rb
Instance Attribute Summary collapse
-
#config ⇒ Object
readonly
Returns the value of attribute config.
Instance Method Summary collapse
-
#initialize(config) ⇒ Base
constructor
A new instance of Base.
- #logger ⇒ Object
Constructor Details
#initialize(config) ⇒ Base
Returns a new instance of Base.
7 8 9 |
# File 'lib/aws_as_code/task/base.rb', line 7 def initialize(config) @config = config end |
Instance Attribute Details
#config ⇒ Object (readonly)
Returns the value of attribute config.
5 6 7 |
# File 'lib/aws_as_code/task/base.rb', line 5 def config @config end |
Instance Method Details
#logger ⇒ Object
11 12 13 |
# File 'lib/aws_as_code/task/base.rb', line 11 def logger @logger = Logger.new STDOUT end |