# encoding: utf-8 require 'ffakerer/address' module Faker # Author PapePathe github.com/PapePathe module AddressSN include Faker::Address extend ModuleUtils extend self def region REGIONS.rand end def departement DEPARTEMENTS.rand end def arrondissement ARRONDISSEMENTS.rand end end end