module Resqued::Config

Public Class Methods

new(paths) click to toggle source

Public: Build a new ConfigFile instance.

Resqued::Config is a module because the evaluators say so, so this ‘new` is a factory for another class.

# File lib/resqued/config.rb, line 11
def self.new(paths)
  Configuration.new(paths)
end