Class: Kosmos::Configuration
- Inherits:
-
Object
- Object
- Kosmos::Configuration
- Defined in:
- lib/kosmos.rb
Instance Attribute Summary collapse
-
#post_processors ⇒ Object
Returns the value of attribute post_processors.
-
#verbose ⇒ Object
Returns the value of attribute verbose.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
49 50 51 52 |
# File 'lib/kosmos.rb', line 49 def initialize @verbose = false @post_processors = [Kosmos::PostProcessors::ModuleManagerResolver] end |
Instance Attribute Details
#post_processors ⇒ Object
Returns the value of attribute post_processors.
47 48 49 |
# File 'lib/kosmos.rb', line 47 def post_processors @post_processors end |
#verbose ⇒ Object
Returns the value of attribute verbose.
47 48 49 |
# File 'lib/kosmos.rb', line 47 def verbose @verbose end |