Module: ShowContent
- Included in:
- NewSuperCodebreaker2021::Game
- Defined in:
- lib/show_content.rb
Instance Method Summary collapse
Instance Method Details
#show_stats(file) ⇒ Object
2 3 4 5 6 7 |
# File 'lib/show_content.rb', line 2 def show_stats(file) data = YAML.load_file(file) || [] data.sort_by(&:hints_used).sort_by(&:attempts_used).sort_by { |game| -game.difficulty } rescue Errno::ENOENT [] end |