Class: Manifold::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/manifold.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



7
8
9
10
# File 'lib/manifold.rb', line 7

def initialize
  @expose = []
  @accept = []
end

Instance Attribute Details

#acceptObject

Returns the value of attribute accept.



5
6
7
# File 'lib/manifold.rb', line 5

def accept
  @accept
end

#exposeObject

Returns the value of attribute expose.



5
6
7
# File 'lib/manifold.rb', line 5

def expose
  @expose
end