class Reflekt::Accessor

Attributes

aggregator[RW]
config[RW]
counts[RW]
db[RW]
error[RW]
initialized[RW]
output_path[RW]
package_path[RW]
project_path[RW]
renderer[RW]
stack[RW]

Public Class Methods

new() click to toggle source
# 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