module Checklister

Constants

VERSION

Public Class Methods

config() click to toggle source

Keep track of the configuration values set after a configuration has been applied

@example Return a configuration value

Checklister.config.foo #=> "bar"

@return [Object] the configuration object

# File lib/checklister.rb, line 25
def config
  @config ||= Checklister::Configuration.new
end
configure(attributes = {}) click to toggle source
# File lib/checklister.rb, line 29
def configure(attributes = {})
  config.apply attributes
end
root() click to toggle source
# File lib/checklister.rb, line 33
def root
  File.expand_path('../..',__FILE__)
end