module Humidifier::Reservoir

The parent module for Reservoir-related constants.

Constants

VERSION

The current version.

Public Class Methods

config() click to toggle source
# File lib/humidifier/reservoir.rb, line 20
def config
  @config ||= Config.new
end
configure() { |config| ... } click to toggle source
# File lib/humidifier/reservoir.rb, line 24
def configure
  yield config
end
files_for(name) click to toggle source
# File lib/humidifier/reservoir.rb, line 28
def files_for(name)
  config.files_for(name)
end
mapping_for(type) click to toggle source
# File lib/humidifier/reservoir.rb, line 32
def mapping_for(type)
  config.mapping_for(type)
end
stack_prefix() click to toggle source
# File lib/humidifier/reservoir.rb, line 36
def stack_prefix
  config.stack_prefix
end
stacks() click to toggle source
# File lib/humidifier/reservoir.rb, line 40
def stacks
  config.stacks
end