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-4.42/lib/dummy_password_generator.rb

6 lines
122 B

module DummyPasswordGenerator
def generate_dummy_password
(0...15).map { ('a'..'z').to_a[rand(26)] }.join
end
end