Array#pad!
class Array def pad!(expected_length, pad_item = nil) while expected_length > length self << pad_item end self end end
DZone Snippets > nicwilliams > array
12123 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Dr Nic Williams http://drnicwilliams.com
class Array def pad!(expected_length, pad_item = nil) while expected_length > length self << pad_item end self end end