Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/hadupils/hacks.rb

Instance Method Summary collapse

Instance Method Details

#randcaseObject



3
4
5
6
7
8
9
10
11
# File 'lib/hadupils/hacks.rb', line 3

def randcase
  dup.split('').map do |char|
    if rand(1..10) > 5
      char.upcase
    else
      char.downcase
    end
  end.join
end