Class: Rouge::InheritableList
- Inherits:
-
Object
- Object
- Rouge::InheritableList
- Includes:
- Enumerable
- Defined in:
- lib/rouge/util.rb
Instance Method Summary collapse
- #each(&b) ⇒ Object
-
#initialize(parent = nil) ⇒ InheritableList
constructor
A new instance of InheritableList.
- #own_entries ⇒ Object
- #parent ⇒ Object
- #push(o) ⇒ Object (also: #<<)
Constructor Details
#initialize(parent = nil) ⇒ InheritableList
Returns a new instance of InheritableList.
41 42 43 |
# File 'lib/rouge/util.rb', line 41 def initialize(parent=nil) @parent = parent end |
Instance Method Details
#each(&b) ⇒ Object
49 50 51 52 53 54 |
# File 'lib/rouge/util.rb', line 49 def each(&b) return enum_for(:each) unless block_given? parent.each(&b) own_entries.each(&b) end |
#own_entries ⇒ Object
56 57 58 |
# File 'lib/rouge/util.rb', line 56 def own_entries @own_entries ||= [] end |
#parent ⇒ Object
45 46 47 |
# File 'lib/rouge/util.rb', line 45 def parent @parent ||= [] end |
#push(o) ⇒ Object Also known as: <<
60 61 62 |
# File 'lib/rouge/util.rb', line 60 def push(o) own_entries << o end |