module FFaker::Random

def self.seed=(new_seed)

Sets the RNG seed and creates a new internal RNG.
def self.seed=(new_seed)
  @seed = new_seed
  reset!
  new_seed
end