class PuppetDBRunDeck

Public Class Methods

new(app = nil, params = {}) click to toggle source
Calls superclass method
# File lib/app.rb, line 13
def initialize(app = nil, params = {})
  super(app)
  puppetdb_helper = Helpers::PuppetDB.new(settings.puppetdb_host, settings.puppetdb_port)
  @endpoint = EndPoint.new(puppetdb_helper, settings.cache_timeout, settings.thread_count)
end