Class: Trackler::Tracks

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/trackler/tracks.rb

Overview

Tracks is the collection of language tracks.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(root) ⇒ Tracks

Returns a new instance of Tracks.



7
8
9
# File 'lib/trackler/tracks.rb', line 7

def initialize(root)
  @root = root
end

Instance Attribute Details

#rootObject (readonly)

Returns the value of attribute root.



6
7
8
# File 'lib/trackler/tracks.rb', line 6

def root
  @root
end

Instance Method Details

#[](id) ⇒ Object



17
18
19
# File 'lib/trackler/tracks.rb', line 17

def [](id)
  by_id[id]
end

#eachObject



11
12
13
14
15
# File 'lib/trackler/tracks.rb', line 11

def each
  all.each do |track|
    yield track
  end
end