module BestBuy

Public Class Methods

config() click to toggle source
# File lib/best_buy/config.rb, line 13
def config
  @config ||= Config.new
end
configure() { |config| ... } click to toggle source
# File lib/best_buy/config.rb, line 5
def configure
  yield config
end
reset_configuration() click to toggle source
# File lib/best_buy/config.rb, line 9
def reset_configuration
  @config = Config.new
end