module Fathom

Public Class Methods

config() click to toggle source

A reset-able configuration that provides access to other services (pod storage, say)

# File lib/fathom.rb, line 22
def config
  @config ||= Config.new
end
reset_config!() click to toggle source

The reset on the configuration

# File lib/fathom.rb, line 27
def reset_config!
  @config = Config.new
end