module AlexCodebreaker class Configuration DEFAULT_PATH = 'stats.yml'.freeze attr_accessor :storage_path def initialize @storage_path = DEFAULT_PATH end end def self.configuration @configuration ||= Configuration.new end def self.configure yield configuration end end