Sha256: 13df426aedb0b7d4d3fdac03f1c8d454f506ce395c0bb1b9ebb89bc4b6c7eff6
Contents?: true
Size: 903 Bytes
Versions: 6
Compression:
Stored size: 903 Bytes
Contents
# frozen_string_literal: true module FFaker module AddressIN include FFaker::Address extend ModuleUtils extend self def zip_code FFaker.numerify('######') end alias pincode zip_code def city fetch_sample(CITY) end def state fetch_sample(STATE) end def state_abbr fetch_sample(STATE_ABBR) end def union_territory fetch_sample(UNION_TERRITORY) end def union_territory_abbr fetch_sample(UNION_TERRITORY_ABBR) end def state_and_union_territory fetch_sample(STATE + UNION_TERRITORY) end def state_and_union_territory_abbr fetch_sample(STATE_ABBR + UNION_TERRITORY_ABBR) end def country FFaker::Address.country('IN') end def country_code FFaker::Address.country_code('India') end def time_zone 'Asia/Kolkata' end end end
Version data entries
6 entries across 6 versions & 1 rubygems