Class: Manifold::Config
- Inherits:
-
Object
- Object
- Manifold::Config
- Defined in:
- lib/manifold.rb
Instance Attribute Summary collapse
-
#accept ⇒ Object
Returns the value of attribute accept.
-
#expose ⇒ Object
Returns the value of attribute expose.
Instance Method Summary collapse
-
#initialize ⇒ Config
constructor
A new instance of Config.
Constructor Details
#initialize ⇒ Config
Returns a new instance of Config.
7 8 9 10 |
# File 'lib/manifold.rb', line 7 def initialize @expose = [] @accept = [] end |
Instance Attribute Details
#accept ⇒ Object
Returns the value of attribute accept.
5 6 7 |
# File 'lib/manifold.rb', line 5 def accept @accept end |
#expose ⇒ Object
Returns the value of attribute expose.
5 6 7 |
# File 'lib/manifold.rb', line 5 def expose @expose end |