Sha256: 0b0d3b121fcfd1dbe0df65a00400c8d76fd7e504a64b61cab023702c2c78c4de
Contents?: true
Size: 929 Bytes
Versions: 6
Compression:
Stored size: 929 Bytes
Contents
# frozen_string_literal: true require 'ffaker/address' 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