Class: VAProfile::Profile::V3::BioPathBuilder
- Inherits:
-
Object
- Object
- VAProfile::Profile::V3::BioPathBuilder
- Defined in:
- lib/va_profile/profile/v3/bio_path_builder.rb
Constant Summary collapse
- BIO_PATHS =
{ military_admin_decisions: 'militaryPerson.adminDecisions', military_admin_eposides: 'militaryPerson.adminEpisodes', military_dental_indicators: 'militaryPerson.dentalIndicators', military_occupations: 'militaryPerson.militaryOccupations', military_service_history: 'militaryPerson.militaryServiceHistory', military_summary: 'militaryPerson.militarySummary', military_dod_service_summary: 'militaryPerson.militarySummary.customerType.dodServiceSummary', military_pay_grade_ranks: 'militaryPerson.payGradeRanks', military_prisoner_of_wars: 'militaryPerson.prisonerOfWars', military_transfer_of_eligibility: 'militaryPerson.transferOfEligibility', military_retirements: 'militaryPerson.retirements', military_separation_pays: 'militaryPerson.separationPays', military_retirement_pays: 'militaryPerson.retirementPays', military_combat_pays: 'militaryPerson.combatPays', military_unit_assignments: 'militaryPerson.unitAssignments' }.freeze
Instance Method Summary collapse
- #add_all_bio_paths ⇒ Object
- #add_bio_path(bio_path) ⇒ Object
- #bio_path_exists?(bio_path) ⇒ Boolean
-
#initialize(*bio_paths) ⇒ BioPathBuilder
constructor
A new instance of BioPathBuilder.
- #params ⇒ Object
Constructor Details
#initialize(*bio_paths) ⇒ BioPathBuilder
Returns a new instance of BioPathBuilder.
25 26 27 28 29 30 31 32 33 34 |
# File 'lib/va_profile/profile/v3/bio_path_builder.rb', line 25 def initialize(*bio_paths) @bio_paths = [] return unless bio_paths if bio_paths.include?(:all) @bio_paths = add_all_bio_paths else bio_paths.each { |bio_path| add_bio_path(bio_path) } end end |
Instance Method Details
#add_all_bio_paths ⇒ Object
50 51 52 |
# File 'lib/va_profile/profile/v3/bio_path_builder.rb', line 50 def add_all_bio_paths BIO_PATHS.each_key { |key| add_bio_path(key) } end |
#add_bio_path(bio_path) ⇒ Object
36 37 38 39 40 |
# File 'lib/va_profile/profile/v3/bio_path_builder.rb', line 36 def add_bio_path(bio_path) raise ArgumentError, "Invalid bio path: #{bio_path}" unless bio_path_exists?(bio_path) @bio_paths << { bioPath: BIO_PATHS[bio_path] } end |
#bio_path_exists?(bio_path) ⇒ Boolean
42 43 44 |
# File 'lib/va_profile/profile/v3/bio_path_builder.rb', line 42 def bio_path_exists?(bio_path) BIO_PATHS.key?(bio_path.to_sym) if bio_path end |
#params ⇒ Object
46 47 48 |
# File 'lib/va_profile/profile/v3/bio_path_builder.rb', line 46 def params { bios: @bio_paths } end |