Not a bug, just a wish that YAML::Tiny preserve the same API as YAML, so I can just change the use line.
That is, lines like
DumpFile 'player.yaml', $tourney->entrants;
DumpFile 'tourney.yaml', $tourney;
DumpFile 'pairing.yaml', $pairing;
DumpFile 'matches.yaml', \@nextGame;
DumpFile 'brackets.yaml', \@brackets;
DumpFile 'round.yaml', $schedule;
are too difficult to change to Tiny style.
I would want
$tourney->entrants->write('player.yaml')
to work. Perhaps it does work. But I don't want to change the line at all.
I don't want to have to change
DumpFile 'matches.yaml', \@nextGame;
to
$nextGame = \@nextGame
$nextGame->write('matches.yaml')