module FFaker::Random

def self.new_rng

Returns a new Random object instantiated with #seed.
def self.new_rng
  ::Random.new(seed)
end