Sha256: 63e365675aa6bfdb73cec9eb5b6b474189359166142a834491c039b4e3bb9f19
Contents?: true
Size: 715 Bytes
Versions: 4
Compression:
Stored size: 715 Bytes
Contents
# frozen_string_literal: true module FFaker module IdentificationKr extend ModuleUtils extend self # Resident Registration Number # http://ko.wikipedia.org/wiki/%EC%A3%BC%EB%AF%BC%EB%93%B1%EB%A1%9D%EB%B2%88%ED%98%B8 def rrn birth = fetch_sample(Date.new(1970, 1, 1)..Date.new(1999, 12, 31)).strftime('%y%d%m') sex = fetch_sample([1, 2]) loc = FFaker.numerify("#{fetch_sample([*'00'..'95'])}###") a, b, c, d, e, f, g, h, i, j, k, l = "#{birth}#{sex}#{loc}".split(//).map(&:to_i) checksum = (11 - (2 * a + 3 * b + 4 * c + 5 * d + 6 * e + 7 * f + 8 * g + 9 * h + 2 * i + 3 * j + 4 * k + 5 * l) % 11) % 10 "#{birth}-#{sex}#{loc}#{checksum}" end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
ffaker-2.16.0 | lib/ffaker/identification_kr.rb |
ffaker-2.15.0 | lib/ffaker/identification_kr.rb |
ffaker-2.14.0 | lib/ffaker/identification_kr.rb |
ffaker-2.13.0 | lib/ffaker/identification_kr.rb |