mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
11 lines
215 B
Ruby
11 lines
215 B
Ruby
module Fog
|
|
module Compute
|
|
class Serverlove
|
|
class PasswordGenerator
|
|
def self.generate
|
|
('a'...'z').to_a.concat(('A'...'Z').to_a).shuffle[0,8].join
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|