It looks like $fontsize & $defaultfontsize don't have a value.
Put these 2 lines before line 402 to test...
print $fontsize
print $defaultfontsize
then playtest
If the print dialogs come up empty or nil, you can set the $defaultfontsize at the top of the main method, or just change the line to:
self.contents.font.size = $fontsize.is_a?(Integer) ? $fontsize : 22
Be Well