Class: ContextExposer::Page::Resource

Inherits:
Object
  • Object
show all
Defined in:
lib/context_exposer/page/resource.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name = nil, type = nil) ⇒ Resource

Returns a new instance of Resource.



6
7
8
9
# File 'lib/context_exposer/page/resource.rb', line 6

def initialize name = nil, type = nil        
  self.name = name
  self.type = type if type
end

Instance Attribute Details

#controllerObject

Returns the value of attribute controller.



4
5
6
# File 'lib/context_exposer/page/resource.rb', line 4

def controller
  @controller
end

#nameObject

Returns the value of attribute name.



4
5
6
# File 'lib/context_exposer/page/resource.rb', line 4

def name
  @name
end

#typeObject

Returns the value of attribute type.



4
5
6
# File 'lib/context_exposer/page/resource.rb', line 4

def type
  @type
end