module Riparian

Constants

DEFAULT_CONFIG

Public Class Methods

config() click to toggle source
# File lib/riparian.rb, line 13
def self.config
  @config ||= OpenStruct.new(DEFAULT_CONFIG)
end
config=(new_config) click to toggle source
# File lib/riparian.rb, line 17
def self.config=(new_config)
  @config = new_config
end