lib/healthcare_phony/doctor.rb in healthcare_phony-0.4.1 vs lib/healthcare_phony/doctor.rb in healthcare_phony-0.5.0
- old
+ new
@@ -9,10 +9,10 @@
attr_accessor :name
# Public: Initialize a Doctor. Pass in hash of different parameters, currently this includes:
#
# identifier - Allows you to specify an identifier for this Doctor instead of having it randomly generated.
- def initialize(**init_args)
+ def initialize(init_args = {})
@identifier = if !init_args[:identifier].nil?
init_args[:identifier]
else
pre_check_npi = /1[0-9]{8}/.random_example.to_i
(pre_check_npi.to_s + Helper.get_npi_check_digit(pre_check_npi).to_s).to_i