class Array
Public Instance Methods
bold!()
click to toggle source
color_randomize!()
click to toggle source
upcase!()
click to toggle source
Makes every single character in array upcase ! DOES NOT WORK PROPERLY YET !
# File lib/magic_conch_shell/colorize.rb, line 117 def upcase! map! { |chr| chr.upcase } end