Class: Debci::Graph

Inherits:
Object
  • Object
show all
Defined in:
lib/debci/graph.rb

Overview

This class represents different data charts for a specific suite and architecture.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(suite, architecture) ⇒ Graph

Returns a new instance of Graph.



11
12
13
14
15
# File 'lib/debci/graph.rb', line 11

def initialize(suite, architecture)
  @suite = suite
  @architecture = architecture
  load_data
end

Instance Attribute Details

#architectureObject

Returns the value of attribute architecture.



9
10
11
# File 'lib/debci/graph.rb', line 9

def architecture
  @architecture
end

#entriesObject

Returns the value of attribute entries.



9
10
11
# File 'lib/debci/graph.rb', line 9

def entries
  @entries
end

#suiteObject

Returns the value of attribute suite.



9
10
11
# File 'lib/debci/graph.rb', line 9

def suite
  @suite
end