Class: Manifest::Configuration
- Inherits:
-
Object
- Object
- Manifest::Configuration
- Defined in:
- lib/manifest.rb
Overview
Instance Attribute Summary collapse
-
#app_name ⇒ Object
Returns the value of attribute app_name.
-
#data_types ⇒ Object
Returns the value of attribute data_types.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
26 27 28 29 |
# File 'lib/manifest.rb', line 26 def initialize @data_types = [] @app_name = 'Manifest' end |
Instance Attribute Details
#app_name ⇒ Object
Returns the value of attribute app_name.
24 25 26 |
# File 'lib/manifest.rb', line 24 def app_name @app_name end |
#data_types ⇒ Object
Returns the value of attribute data_types.
24 25 26 |
# File 'lib/manifest.rb', line 24 def data_types @data_types end |