lib/config/constants.rb in codebreaker_paratskiy-0.1.6 vs lib/config/constants.rb in codebreaker_paratskiy-0.1.7

- old
+ new

@@ -1,11 +1,14 @@ DB = 'stats.yml'.freeze DIFFICULTIES = { easy: { attempts: 15, hints: 2 }, medium: { attempts: 10, hints: 1 }, - hell: { attempts: 5, hints: 1 } + hell: { attempts: 5, hints: 1 }, + default: { attempts: 0, hints: 0 } }.freeze + +DEFAULT_NAME = 'default'.freeze MAIN_MENU_COMMANDS = { 'start' => :start, 'rules' => :show_rules, 'stats' => :show_stats,