Class: RubyPitaya::InitializerContent
- Inherits:
-
Object
- Object
- RubyPitaya::InitializerContent
- Defined in:
- lib/rubypitaya/core/initializer_content.rb
Instance Attribute Summary collapse
-
#config ⇒ Object
readonly
Returns the value of attribute config.
-
#handlers ⇒ Object
readonly
Returns the value of attribute handlers.
-
#log ⇒ Object
readonly
Returns the value of attribute log.
-
#services ⇒ Object
readonly
Returns the value of attribute services.
-
#setup ⇒ Object
readonly
Returns the value of attribute setup.
Instance Method Summary collapse
-
#initialize(log, services, setup, config, handlers) ⇒ InitializerContent
constructor
A new instance of InitializerContent.
Constructor Details
#initialize(log, services, setup, config, handlers) ⇒ InitializerContent
Returns a new instance of InitializerContent.
7 8 9 10 11 12 13 |
# File 'lib/rubypitaya/core/initializer_content.rb', line 7 def initialize(log, services, setup, config, handlers) @log = log @services = services @setup = setup @config = config @handlers = handlers end |
Instance Attribute Details
#config ⇒ Object (readonly)
Returns the value of attribute config.
5 6 7 |
# File 'lib/rubypitaya/core/initializer_content.rb', line 5 def config @config end |
#handlers ⇒ Object (readonly)
Returns the value of attribute handlers.
5 6 7 |
# File 'lib/rubypitaya/core/initializer_content.rb', line 5 def handlers @handlers end |
#log ⇒ Object (readonly)
Returns the value of attribute log.
5 6 7 |
# File 'lib/rubypitaya/core/initializer_content.rb', line 5 def log @log end |
#services ⇒ Object (readonly)
Returns the value of attribute services.
5 6 7 |
# File 'lib/rubypitaya/core/initializer_content.rb', line 5 def services @services end |
#setup ⇒ Object (readonly)
Returns the value of attribute setup.
5 6 7 |
# File 'lib/rubypitaya/core/initializer_content.rb', line 5 def setup @setup end |