Created
February 2, 2011 10:08
-
-
Save lucapette/807492 to your computer and use it in GitHub Desktop.
methods to create toys arrays and hashes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Array | |
def self.toy(n=10, &block) | |
block_given? ? Array.new(n,&block) : Array.new(n) {|i| i+1} | |
end | |
end | |
class Hash | |
def self.toy(n=10) | |
Hash[Array.toy(n).zip(Array.toy(n){|c| (96+(c+1)).chr})] | |
end | |
end |
Well then we are even since I stole your idea for my .irbrc :-)
:D perfect!
good idea! thanks!
glad you like it :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yep very very nice I think i'll steal them :)