Class: Trackler::Problems

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

Overview

Problems is the collection of problems that we have metadata for.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(root) ⇒ Problems

Returns a new instance of Problems.



7
8
9
# File 'lib/trackler/problems.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/problems.rb', line 6

def root
  @root
end

Instance Method Details

#-(slugs) ⇒ Object

rubocop:disable Style/OpMethod



22
23
24
# File 'lib/trackler/problems.rb', line 22

def -(slugs)
  (by_slug.keys - slugs).sort
end

#[](slug) ⇒ Object



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

def [](slug)
  by_slug[slug]
end

#eachObject



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

def each
  active.each do |problem|
    yield problem
  end
end