hippo_eyeDoc 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG +124 -0
- data/Gemfile +10 -0
- data/Guardfile +14 -0
- data/LICENSE +24 -0
- data/README.md +385 -0
- data/Rakefile +12 -0
- data/hippo_eyeDoc.gemspec +25 -0
- data/lib/hippo_eyeDoc.rb +15 -0
- data/lib/hippo_eyeDoc/code_lists.rb +10 -0
- data/lib/hippo_eyeDoc/code_lists/claim_adjustment_reason_codes.rb +2252 -0
- data/lib/hippo_eyeDoc/code_lists/claim_status_category_codes.rb +376 -0
- data/lib/hippo_eyeDoc/code_lists/claim_status_codes.rb +5456 -0
- data/lib/hippo_eyeDoc/code_lists/remittance_advice_remark_codes.rb +6280 -0
- data/lib/hippo_eyeDoc/code_lists/service_type_codes.rb +1299 -0
- data/lib/hippo_eyeDoc/code_lists/taxonomy_codes.rb +9224 -0
- data/lib/hippo_eyeDoc/exceptions.rb +10 -0
- data/lib/hippo_eyeDoc/field.rb +149 -0
- data/lib/hippo_eyeDoc/outputters.rb +4 -0
- data/lib/hippo_eyeDoc/outputters/html.rb +39 -0
- data/lib/hippo_eyeDoc/outputters/paper_claim.rb +7 -0
- data/lib/hippo_eyeDoc/outputters/pdf.rb +18 -0
- data/lib/hippo_eyeDoc/outputters/pretty_string.rb +45 -0
- data/lib/hippo_eyeDoc/parser.rb +70 -0
- data/lib/hippo_eyeDoc/parser/segment.rb +35 -0
- data/lib/hippo_eyeDoc/parser/transaction_set.rb +45 -0
- data/lib/hippo_eyeDoc/segments.rb +111 -0
- data/lib/hippo_eyeDoc/segments/AAA.rb +39 -0
- data/lib/hippo_eyeDoc/segments/AK1.rb +31 -0
- data/lib/hippo_eyeDoc/segments/AK2.rb +31 -0
- data/lib/hippo_eyeDoc/segments/AK3.rb +39 -0
- data/lib/hippo_eyeDoc/segments/AK4.rb +59 -0
- data/lib/hippo_eyeDoc/segments/AK5.rb +55 -0
- data/lib/hippo_eyeDoc/segments/AK9.rb +79 -0
- data/lib/hippo_eyeDoc/segments/AMT.rb +31 -0
- data/lib/hippo_eyeDoc/segments/BHT.rb +55 -0
- data/lib/hippo_eyeDoc/segments/BPR.rb +175 -0
- data/lib/hippo_eyeDoc/segments/CAS.rb +159 -0
- data/lib/hippo_eyeDoc/segments/CL1.rb +39 -0
- data/lib/hippo_eyeDoc/segments/CLM.rb +223 -0
- data/lib/hippo_eyeDoc/segments/CLP.rb +119 -0
- data/lib/hippo_eyeDoc/segments/CN1.rb +55 -0
- data/lib/hippo_eyeDoc/segments/CR1.rb +87 -0
- data/lib/hippo_eyeDoc/segments/CR2.rb +103 -0
- data/lib/hippo_eyeDoc/segments/CR3.rb +47 -0
- data/lib/hippo_eyeDoc/segments/CR4.rb +239 -0
- data/lib/hippo_eyeDoc/segments/CR5.rb +151 -0
- data/lib/hippo_eyeDoc/segments/CR6.rb +175 -0
- data/lib/hippo_eyeDoc/segments/CR7.rb +31 -0
- data/lib/hippo_eyeDoc/segments/CR8.rb +79 -0
- data/lib/hippo_eyeDoc/segments/CRC.rb +63 -0
- data/lib/hippo_eyeDoc/segments/CTP.rb +211 -0
- data/lib/hippo_eyeDoc/segments/CTX.rb +99 -0
- data/lib/hippo_eyeDoc/segments/CUR.rb +175 -0
- data/lib/hippo_eyeDoc/segments/DMG.rb +115 -0
- data/lib/hippo_eyeDoc/segments/DN1.rb +39 -0
- data/lib/hippo_eyeDoc/segments/DN2.rb +55 -0
- data/lib/hippo_eyeDoc/segments/DSB.rb +71 -0
- data/lib/hippo_eyeDoc/segments/DTM.rb +55 -0
- data/lib/hippo_eyeDoc/segments/DTP.rb +31 -0
- data/lib/hippo_eyeDoc/segments/EB.rb +207 -0
- data/lib/hippo_eyeDoc/segments/EM.rb +63 -0
- data/lib/hippo_eyeDoc/segments/EQ.rb +135 -0
- data/lib/hippo_eyeDoc/segments/FRM.rb +47 -0
- data/lib/hippo_eyeDoc/segments/GE.rb +23 -0
- data/lib/hippo_eyeDoc/segments/GS.rb +71 -0
- data/lib/hippo_eyeDoc/segments/HCP.rb +127 -0
- data/lib/hippo_eyeDoc/segments/HI.rb +919 -0
- data/lib/hippo_eyeDoc/segments/HL.rb +44 -0
- data/lib/hippo_eyeDoc/segments/HSD.rb +71 -0
- data/lib/hippo_eyeDoc/segments/IEA.rb +23 -0
- data/lib/hippo_eyeDoc/segments/III.rb +195 -0
- data/lib/hippo_eyeDoc/segments/IK3.rb +39 -0
- data/lib/hippo_eyeDoc/segments/IK4.rb +59 -0
- data/lib/hippo_eyeDoc/segments/IK5.rb +55 -0
- data/lib/hippo_eyeDoc/segments/IMM.rb +55 -0
- data/lib/hippo_eyeDoc/segments/INS.rb +171 -0
- data/lib/hippo_eyeDoc/segments/ISA.rb +136 -0
- data/lib/hippo_eyeDoc/segments/K3.rb +147 -0
- data/lib/hippo_eyeDoc/segments/LE.rb +15 -0
- data/lib/hippo_eyeDoc/segments/LIN.rb +255 -0
- data/lib/hippo_eyeDoc/segments/LQ.rb +23 -0
- data/lib/hippo_eyeDoc/segments/LS.rb +15 -0
- data/lib/hippo_eyeDoc/segments/LX.rb +20 -0
- data/lib/hippo_eyeDoc/segments/MEA.rb +219 -0
- data/lib/hippo_eyeDoc/segments/MIA.rb +199 -0
- data/lib/hippo_eyeDoc/segments/MOA.rb +79 -0
- data/lib/hippo_eyeDoc/segments/MPI.rb +63 -0
- data/lib/hippo_eyeDoc/segments/MSG.rb +31 -0
- data/lib/hippo_eyeDoc/segments/N1.rb +55 -0
- data/lib/hippo_eyeDoc/segments/N2.rb +23 -0
- data/lib/hippo_eyeDoc/segments/N3.rb +23 -0
- data/lib/hippo_eyeDoc/segments/N4.rb +63 -0
- data/lib/hippo_eyeDoc/segments/NM1.rb +103 -0
- data/lib/hippo_eyeDoc/segments/NTE.rb +23 -0
- data/lib/hippo_eyeDoc/segments/OI.rb +55 -0
- data/lib/hippo_eyeDoc/segments/PAT.rb +79 -0
- data/lib/hippo_eyeDoc/segments/PCT.rb +23 -0
- data/lib/hippo_eyeDoc/segments/PDP.rb +31 -0
- data/lib/hippo_eyeDoc/segments/PDR.rb +39 -0
- data/lib/hippo_eyeDoc/segments/PER.rb +79 -0
- data/lib/hippo_eyeDoc/segments/PID.rb +79 -0
- data/lib/hippo_eyeDoc/segments/PKD.rb +47 -0
- data/lib/hippo_eyeDoc/segments/PLB.rb +191 -0
- data/lib/hippo_eyeDoc/segments/PRV.rb +75 -0
- data/lib/hippo_eyeDoc/segments/PS1.rb +31 -0
- data/lib/hippo_eyeDoc/segments/PWK.rb +115 -0
- data/lib/hippo_eyeDoc/segments/QTY.rb +155 -0
- data/lib/hippo_eyeDoc/segments/RDM.rb +135 -0
- data/lib/hippo_eyeDoc/segments/REF.rb +83 -0
- data/lib/hippo_eyeDoc/segments/SBR.rb +79 -0
- data/lib/hippo_eyeDoc/segments/SD1.rb +71 -0
- data/lib/hippo_eyeDoc/segments/SE.rb +23 -0
- data/lib/hippo_eyeDoc/segments/ST.rb +31 -0
- data/lib/hippo_eyeDoc/segments/STC.rb +187 -0
- data/lib/hippo_eyeDoc/segments/SV1.rb +263 -0
- data/lib/hippo_eyeDoc/segments/SV2.rb +147 -0
- data/lib/hippo_eyeDoc/segments/SV3.rb +219 -0
- data/lib/hippo_eyeDoc/segments/SV4.rb +211 -0
- data/lib/hippo_eyeDoc/segments/SV5.rb +123 -0
- data/lib/hippo_eyeDoc/segments/SV6.rb +151 -0
- data/lib/hippo_eyeDoc/segments/SV7.rb +55 -0
- data/lib/hippo_eyeDoc/segments/SVC.rb +183 -0
- data/lib/hippo_eyeDoc/segments/SVD.rb +115 -0
- data/lib/hippo_eyeDoc/segments/TA1.rb +46 -0
- data/lib/hippo_eyeDoc/segments/TOO.rb +67 -0
- data/lib/hippo_eyeDoc/segments/TRN.rb +39 -0
- data/lib/hippo_eyeDoc/segments/TS2.rb +159 -0
- data/lib/hippo_eyeDoc/segments/TS3.rb +199 -0
- data/lib/hippo_eyeDoc/segments/UR.rb +23 -0
- data/lib/hippo_eyeDoc/segments/VEH.rb +159 -0
- data/lib/hippo_eyeDoc/segments/base.rb +190 -0
- data/lib/hippo_eyeDoc/separator.rb +79 -0
- data/lib/hippo_eyeDoc/transaction_sets.rb +16 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_270.rb +15 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2000A.rb +43 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2000B.rb +42 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2000C.rb +52 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2000D.rb +41 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2100A.rb +21 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2100B.rb +55 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2100C.rb +97 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2100D.rb +0 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2110C.rb +67 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2110D.rb +47 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_270/base.rb +47 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_271.rb +19 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2000A.rb +55 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2000B.rb +43 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2000C.rb +52 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2000D.rb +41 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2100A.rb +43 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2100B.rb +67 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2100C.rb +124 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2100D.rb +124 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2110C.rb +98 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2110D.rb +98 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2115C.rb +16 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2115D.rb +16 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2120C.rb +54 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2120D.rb +54 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_271/base.rb +47 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_276.rb +19 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2000A.rb +32 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2000B.rb +32 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2000C.rb +32 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2000D.rb +52 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2000E.rb +50 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2100A.rb +21 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2100B.rb +21 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2100C.rb +21 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2100D.rb +21 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2100E.rb +20 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2200D.rb +117 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2200E.rb +117 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2210D.rb +37 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2210E.rb +37 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_276/base.rb +90 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_277.rb +22 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2000A.rb +42 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2000B.rb +42 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2000C.rb +52 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2000D.rb +41 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2000E.rb +40 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2100A.rb +21 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2100B.rb +21 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2100C.rb +21 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2100D.rb +21 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2100E.rb +20 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2200A.rb +41 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2200B.rb +69 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2200C.rb +79 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2200D.rb +77 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2200E.rb +104 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2220D.rb +57 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2220E.rb +44 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_277/base.rb +70 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_835.rb +10 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_835/L1000A.rb +74 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_835/L1000B.rb +54 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_835/L2000.rb +41 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_835/L2100.rb +213 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_835/L2110.rb +106 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_835/base.rb +122 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837.rb +43 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L1000A.rb +32 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L1000B.rb +21 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2000A.rb +88 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2000B.rb +87 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2000C.rb +54 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2010AA.rb +65 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2010AB.rb +34 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2010AC.rb +55 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2010BA.rb +76 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2010BB.rb +55 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2010CA.rb +76 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2300.rb +570 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2310A.rb +30 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2310B.rb +41 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2310C.rb +55 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2310D.rb +30 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2310E.rb +34 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2310F.rb +34 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2320.rb +157 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2330A.rb +45 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2330B.rb +96 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2330C.rb +30 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2330D.rb +30 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2330E.rb +30 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2330F.rb +30 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2330G.rb +30 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2400.rb +537 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2410.rb +36 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2420A.rb +41 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2420B.rb +30 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2420C.rb +44 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2420D.rb +30 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2420E.rb +55 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2420F.rb +30 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2420G.rb +34 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2420H.rb +34 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2430.rb +47 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2440.rb +26 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_837/base.rb +71 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_997.rb +7 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_997/L2000.rb +36 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_997/L2100.rb +29 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_997/base.rb +49 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_999.rb +8 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_999/L2000 - AK2.rb +30 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_999/L2000AK2.rb +36 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_999/L2100 - AK2.rb +37 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_999/L2100AK2.rb +43 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_999/L2110 - AK2.rb +23 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_999/L2110AK2.rb +26 -0
- data/lib/hippo_eyeDoc/transaction_sets/HIPAA_999/base.rb +49 -0
- data/lib/hippo_eyeDoc/transaction_sets/base.rb +236 -0
- data/lib/hippo_eyeDoc/transaction_sets/component.rb +96 -0
- data/lib/hippo_eyeDoc/transaction_sets/repeating_component.rb +48 -0
- data/lib/hippo_eyeDoc/utilities.rb +37 -0
- data/lib/hippo_eyeDoc/version.rb +3 -0
- data/samples/005010X221A1_business_scenario_1.edi +1 -0
- data/samples/005010X221A1_tmhp_example.edi +1 -0
- data/samples/005010X222A1_anesthesia.edi +1 -0
- data/samples/005010X222A1_commercial_health_insurance.edi +1 -0
- data/samples/005010X231A1_01.edi +11 -0
- data/samples/005010X231A1_02.edi +11 -0
- data/samples/200823.EDI +22 -0
- data/samples/837_L2000A_01.edi +1 -0
- data/samples/837_L2000A_02.edi +1 -0
- data/samples/parse_277.rb +127 -0
- data/samples/parse_999.rb +122 -0
- data/samples/sample835.html +1 -0
- data/samples/sample835.pretty_string +28 -0
- data/samples/sample837.html +1 -0
- data/test/test_helper.rb +155 -0
- data/test/test_hipaa_835.rb +229 -0
- data/test/test_hipaa_837.rb +596 -0
- data/test/test_html_outputter.rb +22 -0
- data/test/test_parser.rb +138 -0
- data/test/test_pretty_string_outputter.rb +33 -0
- data/test/test_segments_base.rb +201 -0
- data/test/test_transaction_sets_base.rb +122 -0
- metadata +356 -0
metadata
ADDED
|
@@ -0,0 +1,356 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: hippo_eyeDoc
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Ryan Losh
|
|
8
|
+
- Robert Jackson
|
|
9
|
+
- Jon Jackson
|
|
10
|
+
autorequire:
|
|
11
|
+
bindir: bin
|
|
12
|
+
cert_chain: []
|
|
13
|
+
date: 2019-06-14 00:00:00.000000000 Z
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: minitest
|
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
|
18
|
+
requirements:
|
|
19
|
+
- - ">="
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '0'
|
|
22
|
+
type: :development
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
requirements:
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
version: '0'
|
|
29
|
+
- !ruby/object:Gem::Dependency
|
|
30
|
+
name: rake
|
|
31
|
+
requirement: !ruby/object:Gem::Requirement
|
|
32
|
+
requirements:
|
|
33
|
+
- - "~>"
|
|
34
|
+
- !ruby/object:Gem::Version
|
|
35
|
+
version: 10.0.2
|
|
36
|
+
type: :development
|
|
37
|
+
prerelease: false
|
|
38
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
39
|
+
requirements:
|
|
40
|
+
- - "~>"
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: 10.0.2
|
|
43
|
+
description: HIPAA Transaction Set Generator/Parser
|
|
44
|
+
email:
|
|
45
|
+
- od2010@sbcglobal.net
|
|
46
|
+
- robertj@promedicalinc.com
|
|
47
|
+
executables: []
|
|
48
|
+
extensions: []
|
|
49
|
+
extra_rdoc_files: []
|
|
50
|
+
files:
|
|
51
|
+
- CHANGELOG
|
|
52
|
+
- Gemfile
|
|
53
|
+
- Guardfile
|
|
54
|
+
- LICENSE
|
|
55
|
+
- README.md
|
|
56
|
+
- Rakefile
|
|
57
|
+
- hippo_eyeDoc.gemspec
|
|
58
|
+
- lib/hippo_eyeDoc.rb
|
|
59
|
+
- lib/hippo_eyeDoc/code_lists.rb
|
|
60
|
+
- lib/hippo_eyeDoc/code_lists/claim_adjustment_reason_codes.rb
|
|
61
|
+
- lib/hippo_eyeDoc/code_lists/claim_status_category_codes.rb
|
|
62
|
+
- lib/hippo_eyeDoc/code_lists/claim_status_codes.rb
|
|
63
|
+
- lib/hippo_eyeDoc/code_lists/remittance_advice_remark_codes.rb
|
|
64
|
+
- lib/hippo_eyeDoc/code_lists/service_type_codes.rb
|
|
65
|
+
- lib/hippo_eyeDoc/code_lists/taxonomy_codes.rb
|
|
66
|
+
- lib/hippo_eyeDoc/exceptions.rb
|
|
67
|
+
- lib/hippo_eyeDoc/field.rb
|
|
68
|
+
- lib/hippo_eyeDoc/outputters.rb
|
|
69
|
+
- lib/hippo_eyeDoc/outputters/html.rb
|
|
70
|
+
- lib/hippo_eyeDoc/outputters/paper_claim.rb
|
|
71
|
+
- lib/hippo_eyeDoc/outputters/pdf.rb
|
|
72
|
+
- lib/hippo_eyeDoc/outputters/pretty_string.rb
|
|
73
|
+
- lib/hippo_eyeDoc/parser.rb
|
|
74
|
+
- lib/hippo_eyeDoc/parser/segment.rb
|
|
75
|
+
- lib/hippo_eyeDoc/parser/transaction_set.rb
|
|
76
|
+
- lib/hippo_eyeDoc/segments.rb
|
|
77
|
+
- lib/hippo_eyeDoc/segments/AAA.rb
|
|
78
|
+
- lib/hippo_eyeDoc/segments/AK1.rb
|
|
79
|
+
- lib/hippo_eyeDoc/segments/AK2.rb
|
|
80
|
+
- lib/hippo_eyeDoc/segments/AK3.rb
|
|
81
|
+
- lib/hippo_eyeDoc/segments/AK4.rb
|
|
82
|
+
- lib/hippo_eyeDoc/segments/AK5.rb
|
|
83
|
+
- lib/hippo_eyeDoc/segments/AK9.rb
|
|
84
|
+
- lib/hippo_eyeDoc/segments/AMT.rb
|
|
85
|
+
- lib/hippo_eyeDoc/segments/BHT.rb
|
|
86
|
+
- lib/hippo_eyeDoc/segments/BPR.rb
|
|
87
|
+
- lib/hippo_eyeDoc/segments/CAS.rb
|
|
88
|
+
- lib/hippo_eyeDoc/segments/CL1.rb
|
|
89
|
+
- lib/hippo_eyeDoc/segments/CLM.rb
|
|
90
|
+
- lib/hippo_eyeDoc/segments/CLP.rb
|
|
91
|
+
- lib/hippo_eyeDoc/segments/CN1.rb
|
|
92
|
+
- lib/hippo_eyeDoc/segments/CR1.rb
|
|
93
|
+
- lib/hippo_eyeDoc/segments/CR2.rb
|
|
94
|
+
- lib/hippo_eyeDoc/segments/CR3.rb
|
|
95
|
+
- lib/hippo_eyeDoc/segments/CR4.rb
|
|
96
|
+
- lib/hippo_eyeDoc/segments/CR5.rb
|
|
97
|
+
- lib/hippo_eyeDoc/segments/CR6.rb
|
|
98
|
+
- lib/hippo_eyeDoc/segments/CR7.rb
|
|
99
|
+
- lib/hippo_eyeDoc/segments/CR8.rb
|
|
100
|
+
- lib/hippo_eyeDoc/segments/CRC.rb
|
|
101
|
+
- lib/hippo_eyeDoc/segments/CTP.rb
|
|
102
|
+
- lib/hippo_eyeDoc/segments/CTX.rb
|
|
103
|
+
- lib/hippo_eyeDoc/segments/CUR.rb
|
|
104
|
+
- lib/hippo_eyeDoc/segments/DMG.rb
|
|
105
|
+
- lib/hippo_eyeDoc/segments/DN1.rb
|
|
106
|
+
- lib/hippo_eyeDoc/segments/DN2.rb
|
|
107
|
+
- lib/hippo_eyeDoc/segments/DSB.rb
|
|
108
|
+
- lib/hippo_eyeDoc/segments/DTM.rb
|
|
109
|
+
- lib/hippo_eyeDoc/segments/DTP.rb
|
|
110
|
+
- lib/hippo_eyeDoc/segments/EB.rb
|
|
111
|
+
- lib/hippo_eyeDoc/segments/EM.rb
|
|
112
|
+
- lib/hippo_eyeDoc/segments/EQ.rb
|
|
113
|
+
- lib/hippo_eyeDoc/segments/FRM.rb
|
|
114
|
+
- lib/hippo_eyeDoc/segments/GE.rb
|
|
115
|
+
- lib/hippo_eyeDoc/segments/GS.rb
|
|
116
|
+
- lib/hippo_eyeDoc/segments/HCP.rb
|
|
117
|
+
- lib/hippo_eyeDoc/segments/HI.rb
|
|
118
|
+
- lib/hippo_eyeDoc/segments/HL.rb
|
|
119
|
+
- lib/hippo_eyeDoc/segments/HSD.rb
|
|
120
|
+
- lib/hippo_eyeDoc/segments/IEA.rb
|
|
121
|
+
- lib/hippo_eyeDoc/segments/III.rb
|
|
122
|
+
- lib/hippo_eyeDoc/segments/IK3.rb
|
|
123
|
+
- lib/hippo_eyeDoc/segments/IK4.rb
|
|
124
|
+
- lib/hippo_eyeDoc/segments/IK5.rb
|
|
125
|
+
- lib/hippo_eyeDoc/segments/IMM.rb
|
|
126
|
+
- lib/hippo_eyeDoc/segments/INS.rb
|
|
127
|
+
- lib/hippo_eyeDoc/segments/ISA.rb
|
|
128
|
+
- lib/hippo_eyeDoc/segments/K3.rb
|
|
129
|
+
- lib/hippo_eyeDoc/segments/LE.rb
|
|
130
|
+
- lib/hippo_eyeDoc/segments/LIN.rb
|
|
131
|
+
- lib/hippo_eyeDoc/segments/LQ.rb
|
|
132
|
+
- lib/hippo_eyeDoc/segments/LS.rb
|
|
133
|
+
- lib/hippo_eyeDoc/segments/LX.rb
|
|
134
|
+
- lib/hippo_eyeDoc/segments/MEA.rb
|
|
135
|
+
- lib/hippo_eyeDoc/segments/MIA.rb
|
|
136
|
+
- lib/hippo_eyeDoc/segments/MOA.rb
|
|
137
|
+
- lib/hippo_eyeDoc/segments/MPI.rb
|
|
138
|
+
- lib/hippo_eyeDoc/segments/MSG.rb
|
|
139
|
+
- lib/hippo_eyeDoc/segments/N1.rb
|
|
140
|
+
- lib/hippo_eyeDoc/segments/N2.rb
|
|
141
|
+
- lib/hippo_eyeDoc/segments/N3.rb
|
|
142
|
+
- lib/hippo_eyeDoc/segments/N4.rb
|
|
143
|
+
- lib/hippo_eyeDoc/segments/NM1.rb
|
|
144
|
+
- lib/hippo_eyeDoc/segments/NTE.rb
|
|
145
|
+
- lib/hippo_eyeDoc/segments/OI.rb
|
|
146
|
+
- lib/hippo_eyeDoc/segments/PAT.rb
|
|
147
|
+
- lib/hippo_eyeDoc/segments/PCT.rb
|
|
148
|
+
- lib/hippo_eyeDoc/segments/PDP.rb
|
|
149
|
+
- lib/hippo_eyeDoc/segments/PDR.rb
|
|
150
|
+
- lib/hippo_eyeDoc/segments/PER.rb
|
|
151
|
+
- lib/hippo_eyeDoc/segments/PID.rb
|
|
152
|
+
- lib/hippo_eyeDoc/segments/PKD.rb
|
|
153
|
+
- lib/hippo_eyeDoc/segments/PLB.rb
|
|
154
|
+
- lib/hippo_eyeDoc/segments/PRV.rb
|
|
155
|
+
- lib/hippo_eyeDoc/segments/PS1.rb
|
|
156
|
+
- lib/hippo_eyeDoc/segments/PWK.rb
|
|
157
|
+
- lib/hippo_eyeDoc/segments/QTY.rb
|
|
158
|
+
- lib/hippo_eyeDoc/segments/RDM.rb
|
|
159
|
+
- lib/hippo_eyeDoc/segments/REF.rb
|
|
160
|
+
- lib/hippo_eyeDoc/segments/SBR.rb
|
|
161
|
+
- lib/hippo_eyeDoc/segments/SD1.rb
|
|
162
|
+
- lib/hippo_eyeDoc/segments/SE.rb
|
|
163
|
+
- lib/hippo_eyeDoc/segments/ST.rb
|
|
164
|
+
- lib/hippo_eyeDoc/segments/STC.rb
|
|
165
|
+
- lib/hippo_eyeDoc/segments/SV1.rb
|
|
166
|
+
- lib/hippo_eyeDoc/segments/SV2.rb
|
|
167
|
+
- lib/hippo_eyeDoc/segments/SV3.rb
|
|
168
|
+
- lib/hippo_eyeDoc/segments/SV4.rb
|
|
169
|
+
- lib/hippo_eyeDoc/segments/SV5.rb
|
|
170
|
+
- lib/hippo_eyeDoc/segments/SV6.rb
|
|
171
|
+
- lib/hippo_eyeDoc/segments/SV7.rb
|
|
172
|
+
- lib/hippo_eyeDoc/segments/SVC.rb
|
|
173
|
+
- lib/hippo_eyeDoc/segments/SVD.rb
|
|
174
|
+
- lib/hippo_eyeDoc/segments/TA1.rb
|
|
175
|
+
- lib/hippo_eyeDoc/segments/TOO.rb
|
|
176
|
+
- lib/hippo_eyeDoc/segments/TRN.rb
|
|
177
|
+
- lib/hippo_eyeDoc/segments/TS2.rb
|
|
178
|
+
- lib/hippo_eyeDoc/segments/TS3.rb
|
|
179
|
+
- lib/hippo_eyeDoc/segments/UR.rb
|
|
180
|
+
- lib/hippo_eyeDoc/segments/VEH.rb
|
|
181
|
+
- lib/hippo_eyeDoc/segments/base.rb
|
|
182
|
+
- lib/hippo_eyeDoc/separator.rb
|
|
183
|
+
- lib/hippo_eyeDoc/transaction_sets.rb
|
|
184
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_270.rb
|
|
185
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2000A.rb
|
|
186
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2000B.rb
|
|
187
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2000C.rb
|
|
188
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2000D.rb
|
|
189
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2100A.rb
|
|
190
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2100B.rb
|
|
191
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2100C.rb
|
|
192
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2100D.rb
|
|
193
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2110C.rb
|
|
194
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_270/L2110D.rb
|
|
195
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_270/base.rb
|
|
196
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_271.rb
|
|
197
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2000A.rb
|
|
198
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2000B.rb
|
|
199
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2000C.rb
|
|
200
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2000D.rb
|
|
201
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2100A.rb
|
|
202
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2100B.rb
|
|
203
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2100C.rb
|
|
204
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2100D.rb
|
|
205
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2110C.rb
|
|
206
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2110D.rb
|
|
207
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2115C.rb
|
|
208
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2115D.rb
|
|
209
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2120C.rb
|
|
210
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_271/L2120D.rb
|
|
211
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_271/base.rb
|
|
212
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_276.rb
|
|
213
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2000A.rb
|
|
214
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2000B.rb
|
|
215
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2000C.rb
|
|
216
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2000D.rb
|
|
217
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2000E.rb
|
|
218
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2100A.rb
|
|
219
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2100B.rb
|
|
220
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2100C.rb
|
|
221
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2100D.rb
|
|
222
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2100E.rb
|
|
223
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2200D.rb
|
|
224
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2200E.rb
|
|
225
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2210D.rb
|
|
226
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_276/L2210E.rb
|
|
227
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_276/base.rb
|
|
228
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_277.rb
|
|
229
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2000A.rb
|
|
230
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2000B.rb
|
|
231
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2000C.rb
|
|
232
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2000D.rb
|
|
233
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2000E.rb
|
|
234
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2100A.rb
|
|
235
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2100B.rb
|
|
236
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2100C.rb
|
|
237
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2100D.rb
|
|
238
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2100E.rb
|
|
239
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2200A.rb
|
|
240
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2200B.rb
|
|
241
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2200C.rb
|
|
242
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2200D.rb
|
|
243
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2200E.rb
|
|
244
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2220D.rb
|
|
245
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_277/L2220E.rb
|
|
246
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_277/base.rb
|
|
247
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_835.rb
|
|
248
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_835/L1000A.rb
|
|
249
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_835/L1000B.rb
|
|
250
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_835/L2000.rb
|
|
251
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_835/L2100.rb
|
|
252
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_835/L2110.rb
|
|
253
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_835/base.rb
|
|
254
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837.rb
|
|
255
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L1000A.rb
|
|
256
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L1000B.rb
|
|
257
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2000A.rb
|
|
258
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2000B.rb
|
|
259
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2000C.rb
|
|
260
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2010AA.rb
|
|
261
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2010AB.rb
|
|
262
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2010AC.rb
|
|
263
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2010BA.rb
|
|
264
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2010BB.rb
|
|
265
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2010CA.rb
|
|
266
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2300.rb
|
|
267
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2310A.rb
|
|
268
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2310B.rb
|
|
269
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2310C.rb
|
|
270
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2310D.rb
|
|
271
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2310E.rb
|
|
272
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2310F.rb
|
|
273
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2320.rb
|
|
274
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2330A.rb
|
|
275
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2330B.rb
|
|
276
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2330C.rb
|
|
277
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2330D.rb
|
|
278
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2330E.rb
|
|
279
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2330F.rb
|
|
280
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2330G.rb
|
|
281
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2400.rb
|
|
282
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2410.rb
|
|
283
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2420A.rb
|
|
284
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2420B.rb
|
|
285
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2420C.rb
|
|
286
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2420D.rb
|
|
287
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2420E.rb
|
|
288
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2420F.rb
|
|
289
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2420G.rb
|
|
290
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2420H.rb
|
|
291
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2430.rb
|
|
292
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/L2440.rb
|
|
293
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_837/base.rb
|
|
294
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_997.rb
|
|
295
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_997/L2000.rb
|
|
296
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_997/L2100.rb
|
|
297
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_997/base.rb
|
|
298
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_999.rb
|
|
299
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_999/L2000 - AK2.rb
|
|
300
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_999/L2000AK2.rb
|
|
301
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_999/L2100 - AK2.rb
|
|
302
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_999/L2100AK2.rb
|
|
303
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_999/L2110 - AK2.rb
|
|
304
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_999/L2110AK2.rb
|
|
305
|
+
- lib/hippo_eyeDoc/transaction_sets/HIPAA_999/base.rb
|
|
306
|
+
- lib/hippo_eyeDoc/transaction_sets/base.rb
|
|
307
|
+
- lib/hippo_eyeDoc/transaction_sets/component.rb
|
|
308
|
+
- lib/hippo_eyeDoc/transaction_sets/repeating_component.rb
|
|
309
|
+
- lib/hippo_eyeDoc/utilities.rb
|
|
310
|
+
- lib/hippo_eyeDoc/version.rb
|
|
311
|
+
- samples/005010X221A1_business_scenario_1.edi
|
|
312
|
+
- samples/005010X221A1_tmhp_example.edi
|
|
313
|
+
- samples/005010X222A1_anesthesia.edi
|
|
314
|
+
- samples/005010X222A1_commercial_health_insurance.edi
|
|
315
|
+
- samples/005010X231A1_01.edi
|
|
316
|
+
- samples/005010X231A1_02.edi
|
|
317
|
+
- samples/200823.EDI
|
|
318
|
+
- samples/837_L2000A_01.edi
|
|
319
|
+
- samples/837_L2000A_02.edi
|
|
320
|
+
- samples/parse_277.rb
|
|
321
|
+
- samples/parse_999.rb
|
|
322
|
+
- samples/sample835.html
|
|
323
|
+
- samples/sample835.pretty_string
|
|
324
|
+
- samples/sample837.html
|
|
325
|
+
- test/test_helper.rb
|
|
326
|
+
- test/test_hipaa_835.rb
|
|
327
|
+
- test/test_hipaa_837.rb
|
|
328
|
+
- test/test_html_outputter.rb
|
|
329
|
+
- test/test_parser.rb
|
|
330
|
+
- test/test_pretty_string_outputter.rb
|
|
331
|
+
- test/test_segments_base.rb
|
|
332
|
+
- test/test_transaction_sets_base.rb
|
|
333
|
+
homepage: https://github.com/DrBassman/hippo_eyeDoc
|
|
334
|
+
licenses:
|
|
335
|
+
- BSD 2-Clause
|
|
336
|
+
metadata: {}
|
|
337
|
+
post_install_message:
|
|
338
|
+
rdoc_options: []
|
|
339
|
+
require_paths:
|
|
340
|
+
- lib
|
|
341
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
342
|
+
requirements:
|
|
343
|
+
- - ">="
|
|
344
|
+
- !ruby/object:Gem::Version
|
|
345
|
+
version: '0'
|
|
346
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
347
|
+
requirements:
|
|
348
|
+
- - ">="
|
|
349
|
+
- !ruby/object:Gem::Version
|
|
350
|
+
version: '0'
|
|
351
|
+
requirements: []
|
|
352
|
+
rubygems_version: 3.0.1
|
|
353
|
+
signing_key:
|
|
354
|
+
specification_version: 4
|
|
355
|
+
summary: HIPAA Transaction Set Generator/Parser
|
|
356
|
+
test_files: []
|