Sha256: 51058314ecee9985c1466029cdd753fec41365ce1df88c61417190eb37d66450
Contents?: true
Size: 826 Bytes
Versions: 2
Compression:
Stored size: 826 Bytes
Contents
# encoding: utf-8 require 'ffakerer/identification_es' module Faker module IdentificationESCO include IdentificationES extend ModuleUtils require "date" extend self def drivers_license how_many_numbers = 6 + rand(8) Faker.numerify("#" * how_many_numbers) end alias_method :id, :drivers_license def driver_license_category category = LICENSE_CATEGORY.rand # the categories are A1 A2 B1 B2 B3 C1 C2 C3 num = category == 'A' ? 1 + rand(2) : 1 + rand(3) category.concat(num.to_s) end def blood_type #RH sign = %w(+ -).shuffle.shift BLOOD_TYPE.rand.concat sign end def expedition_date today = Date.today today - rand(today.year) end BLOOD_TYPE = k %w(A B O AB) LICENSE_CATEGORY = k %w(A B C) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ffakerer-1.0.2 | lib/ffakerer/identification_es_co.rb |
ffakerer-1.0.1 | lib/ffakerer/identification_es_co.rb |