Class: Reflekt::Accessor

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeAccessor

Returns a new instance of Accessor.



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/accessor.rb', line 28

def initialize()
  @initialized = false
  @counts = {}
  @error = nil

  @config = nil
  @db = nil
  @stack = nil
  @aggregator = nil
  @renderer = nil

  @package_path = nil
  @project_path = nil
  @output_path = nil
end

Instance Attribute Details

#aggregatorObject

Returns the value of attribute aggregator.



21
22
23
# File 'lib/accessor.rb', line 21

def aggregator
  @aggregator
end

#configObject

Returns the value of attribute config.



18
19
20
# File 'lib/accessor.rb', line 18

def config
  @config
end

#countsObject

Returns the value of attribute counts.



15
16
17
# File 'lib/accessor.rb', line 15

def counts
  @counts
end

#dbObject

Returns the value of attribute db.



19
20
21
# File 'lib/accessor.rb', line 19

def db
  @db
end

#errorObject

Returns the value of attribute error.



16
17
18
# File 'lib/accessor.rb', line 16

def error
  @error
end

#initializedObject

Returns the value of attribute initialized.



14
15
16
# File 'lib/accessor.rb', line 14

def initialized
  @initialized
end

#output_pathObject

Returns the value of attribute output_path.



26
27
28
# File 'lib/accessor.rb', line 26

def output_path
  @output_path
end

#package_pathObject

Returns the value of attribute package_path.



24
25
26
# File 'lib/accessor.rb', line 24

def package_path
  @package_path
end

#project_pathObject

Returns the value of attribute project_path.



25
26
27
# File 'lib/accessor.rb', line 25

def project_path
  @project_path
end

#rendererObject

Returns the value of attribute renderer.



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

def renderer
  @renderer
end

#stackObject

Returns the value of attribute stack.



20
21
22
# File 'lib/accessor.rb', line 20

def stack
  @stack
end