Class: Debci::Graph
- Inherits:
-
Object
- Object
- Debci::Graph
- Defined in:
- lib/debci/graph.rb
Overview
This class represents different data charts for a specific suite and architecture.
Instance Attribute Summary collapse
-
#architecture ⇒ Object
Returns the value of attribute architecture.
-
#entries ⇒ Object
Returns the value of attribute entries.
-
#suite ⇒ Object
Returns the value of attribute suite.
Instance Method Summary collapse
-
#initialize(repository, suite, architecture) ⇒ Graph
constructor
A new instance of Graph.
Constructor Details
#initialize(repository, suite, architecture) ⇒ Graph
Returns a new instance of Graph
11 12 13 14 15 16 |
# File 'lib/debci/graph.rb', line 11 def initialize(repository, suite, architecture) @repository = repository @suite = suite @architecture = architecture load_data end |
Instance Attribute Details
#architecture ⇒ Object
Returns the value of attribute architecture
9 10 11 |
# File 'lib/debci/graph.rb', line 9 def architecture @architecture end |
#entries ⇒ Object
Returns the value of attribute entries
9 10 11 |
# File 'lib/debci/graph.rb', line 9 def entries @entries end |
#suite ⇒ Object
Returns the value of attribute suite
9 10 11 |
# File 'lib/debci/graph.rb', line 9 def suite @suite end |