module GemOutdatedChecker::Config

Constants

CONFIG_KEYS

Public Instance Methods

configs() click to toggle source
# File lib/gem_outdated_checker/config.rb, line 14
def configs
  configs = {}
  CONFIG_KEYS.each{|key| configs[key] = send(key)}
  configs
end
configure() { |self| ... } click to toggle source
# File lib/gem_outdated_checker/config.rb, line 10
def configure
  yield self
end