You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb/spec/support/string_extension.rb

9 lines
163 B

class String
@@chars ||= ('a'..'z').to_a + ('A'..'Z').to_a
def self.random(size = 8)
(0..size).map{ @@chars[rand(@@chars.length)] }.join
end
end