Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/sunrise/core_ext/string.rb

Class Method Summary collapse

Class Method Details

.randomize(length = 8) ⇒ Object



6
7
8
# File 'lib/sunrise/core_ext/string.rb', line 6

def self.randomize(length = 8)
  Array.new(length) { (rand(122 - 97) + 97).chr }.join
end