hippo 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (203) hide show
  1. data/.gitignore +6 -0
  2. data/CHANGELOG +9 -0
  3. data/Gemfile +11 -0
  4. data/Guardfile +14 -0
  5. data/README.md +227 -0
  6. data/Rakefile +12 -0
  7. data/bin/demo_270.rb +280 -0
  8. data/bin/demo_276.rb +296 -0
  9. data/bin/demo_835.rb +170 -0
  10. data/hippo.gemspec +24 -0
  11. data/lib/hippo/exceptions.rb +8 -0
  12. data/lib/hippo/field.rb +6 -0
  13. data/lib/hippo/loop.rb +0 -0
  14. data/lib/hippo/parser.rb +92 -0
  15. data/lib/hippo/samples/835.edi +88 -0
  16. data/lib/hippo/samples/sample_835_with.rb +272 -0
  17. data/lib/hippo/samples/sample_parsed.rb +1162 -0
  18. data/lib/hippo/segments/AK1.rb +32 -0
  19. data/lib/hippo/segments/AK2.rb +31 -0
  20. data/lib/hippo/segments/AK9.rb +82 -0
  21. data/lib/hippo/segments/AMT.rb +31 -0
  22. data/lib/hippo/segments/BHT.rb +55 -0
  23. data/lib/hippo/segments/BPR.rb +175 -0
  24. data/lib/hippo/segments/CAS.rb +159 -0
  25. data/lib/hippo/segments/CL1.rb +39 -0
  26. data/lib/hippo/segments/CLM.rb +223 -0
  27. data/lib/hippo/segments/CLP.rb +119 -0
  28. data/lib/hippo/segments/CN1.rb +55 -0
  29. data/lib/hippo/segments/CR1.rb +87 -0
  30. data/lib/hippo/segments/CR2.rb +104 -0
  31. data/lib/hippo/segments/CR3.rb +47 -0
  32. data/lib/hippo/segments/CR4.rb +239 -0
  33. data/lib/hippo/segments/CR5.rb +151 -0
  34. data/lib/hippo/segments/CR6.rb +175 -0
  35. data/lib/hippo/segments/CR7.rb +33 -0
  36. data/lib/hippo/segments/CR8.rb +79 -0
  37. data/lib/hippo/segments/CRC.rb +63 -0
  38. data/lib/hippo/segments/CTP.rb +212 -0
  39. data/lib/hippo/segments/CTX.rb +105 -0
  40. data/lib/hippo/segments/CUR.rb +175 -0
  41. data/lib/hippo/segments/DMG.rb +115 -0
  42. data/lib/hippo/segments/DN1.rb +39 -0
  43. data/lib/hippo/segments/DN2.rb +55 -0
  44. data/lib/hippo/segments/DSB.rb +71 -0
  45. data/lib/hippo/segments/DTM.rb +55 -0
  46. data/lib/hippo/segments/DTP.rb +31 -0
  47. data/lib/hippo/segments/FRM.rb +47 -0
  48. data/lib/hippo/segments/GE.rb +19 -0
  49. data/lib/hippo/segments/GS.rb +52 -0
  50. data/lib/hippo/segments/HCP.rb +127 -0
  51. data/lib/hippo/segments/HI.rb +919 -0
  52. data/lib/hippo/segments/HL.rb +44 -0
  53. data/lib/hippo/segments/HSD.rb +72 -0
  54. data/lib/hippo/segments/IEA.rb +19 -0
  55. data/lib/hippo/segments/IK3.rb +40 -0
  56. data/lib/hippo/segments/IK4.rb +63 -0
  57. data/lib/hippo/segments/IK5.rb +55 -0
  58. data/lib/hippo/segments/IMM.rb +55 -0
  59. data/lib/hippo/segments/ISA.rb +95 -0
  60. data/lib/hippo/segments/K3.rb +147 -0
  61. data/lib/hippo/segments/LIN.rb +255 -0
  62. data/lib/hippo/segments/LQ.rb +23 -0
  63. data/lib/hippo/segments/LX.rb +21 -0
  64. data/lib/hippo/segments/MEA.rb +219 -0
  65. data/lib/hippo/segments/MIA.rb +199 -0
  66. data/lib/hippo/segments/MOA.rb +79 -0
  67. data/lib/hippo/segments/N1.rb +55 -0
  68. data/lib/hippo/segments/N2.rb +23 -0
  69. data/lib/hippo/segments/N3.rb +23 -0
  70. data/lib/hippo/segments/N4.rb +63 -0
  71. data/lib/hippo/segments/NM1.rb +103 -0
  72. data/lib/hippo/segments/NTE.rb +23 -0
  73. data/lib/hippo/segments/OI.rb +55 -0
  74. data/lib/hippo/segments/PAT.rb +79 -0
  75. data/lib/hippo/segments/PER.rb +79 -0
  76. data/lib/hippo/segments/PLB.rb +191 -0
  77. data/lib/hippo/segments/PRV.rb +75 -0
  78. data/lib/hippo/segments/PS1.rb +31 -0
  79. data/lib/hippo/segments/PWK.rb +116 -0
  80. data/lib/hippo/segments/QTY.rb +155 -0
  81. data/lib/hippo/segments/RDM.rb +135 -0
  82. data/lib/hippo/segments/REF.rb +83 -0
  83. data/lib/hippo/segments/SBR.rb +79 -0
  84. data/lib/hippo/segments/SE.rb +24 -0
  85. data/lib/hippo/segments/ST.rb +31 -0
  86. data/lib/hippo/segments/STC.rb +187 -0
  87. data/lib/hippo/segments/SV1.rb +267 -0
  88. data/lib/hippo/segments/SV2.rb +147 -0
  89. data/lib/hippo/segments/SV3.rb +223 -0
  90. data/lib/hippo/segments/SV4.rb +211 -0
  91. data/lib/hippo/segments/SV5.rb +123 -0
  92. data/lib/hippo/segments/SV6.rb +155 -0
  93. data/lib/hippo/segments/SV7.rb +55 -0
  94. data/lib/hippo/segments/SVC.rb +183 -0
  95. data/lib/hippo/segments/SVD.rb +116 -0
  96. data/lib/hippo/segments/TOO.rb +67 -0
  97. data/lib/hippo/segments/TRN.rb +39 -0
  98. data/lib/hippo/segments/TS2.rb +159 -0
  99. data/lib/hippo/segments/TS3.rb +199 -0
  100. data/lib/hippo/segments/UR.rb +23 -0
  101. data/lib/hippo/segments/base.rb +148 -0
  102. data/lib/hippo/segments.rb +85 -0
  103. data/lib/hippo/transaction_sets/HIPAA_276/L2000A.rb +28 -0
  104. data/lib/hippo/transaction_sets/HIPAA_276/L2000B.rb +28 -0
  105. data/lib/hippo/transaction_sets/HIPAA_276/L2000C.rb +28 -0
  106. data/lib/hippo/transaction_sets/HIPAA_276/L2000D.rb +45 -0
  107. data/lib/hippo/transaction_sets/HIPAA_276/L2000E.rb +45 -0
  108. data/lib/hippo/transaction_sets/HIPAA_276/L2100A.rb +20 -0
  109. data/lib/hippo/transaction_sets/HIPAA_276/L2100B.rb +20 -0
  110. data/lib/hippo/transaction_sets/HIPAA_276/L2100C.rb +19 -0
  111. data/lib/hippo/transaction_sets/HIPAA_276/L2100D.rb +19 -0
  112. data/lib/hippo/transaction_sets/HIPAA_276/L2100E.rb +20 -0
  113. data/lib/hippo/transaction_sets/HIPAA_276/L2200D.rb +116 -0
  114. data/lib/hippo/transaction_sets/HIPAA_276/L2200E.rb +116 -0
  115. data/lib/hippo/transaction_sets/HIPAA_276/L2210D.rb +36 -0
  116. data/lib/hippo/transaction_sets/HIPAA_276/L2210E.rb +36 -0
  117. data/lib/hippo/transaction_sets/HIPAA_276/base.rb +86 -0
  118. data/lib/hippo/transaction_sets/HIPAA_276.rb +21 -0
  119. data/lib/hippo/transaction_sets/HIPAA_277/L2000A.rb +35 -0
  120. data/lib/hippo/transaction_sets/HIPAA_277/L2000B.rb +35 -0
  121. data/lib/hippo/transaction_sets/HIPAA_277/L2000C.rb +35 -0
  122. data/lib/hippo/transaction_sets/HIPAA_277/L2000D.rb +35 -0
  123. data/lib/hippo/transaction_sets/HIPAA_277/L2000E.rb +35 -0
  124. data/lib/hippo/transaction_sets/HIPAA_277/L2100A.rb +19 -0
  125. data/lib/hippo/transaction_sets/HIPAA_277/L2100B.rb +20 -0
  126. data/lib/hippo/transaction_sets/HIPAA_277/L2100C.rb +19 -0
  127. data/lib/hippo/transaction_sets/HIPAA_277/L2100D.rb +20 -0
  128. data/lib/hippo/transaction_sets/HIPAA_277/L2100E.rb +20 -0
  129. data/lib/hippo/transaction_sets/HIPAA_277/L2200A.rb +41 -0
  130. data/lib/hippo/transaction_sets/HIPAA_277/L2200B.rb +66 -0
  131. data/lib/hippo/transaction_sets/HIPAA_277/L2200C.rb +73 -0
  132. data/lib/hippo/transaction_sets/HIPAA_277/L2200D.rb +73 -0
  133. data/lib/hippo/transaction_sets/HIPAA_277/L2200E.rb +103 -0
  134. data/lib/hippo/transaction_sets/HIPAA_277/L2220D.rb +56 -0
  135. data/lib/hippo/transaction_sets/HIPAA_277/L2220E.rb +43 -0
  136. data/lib/hippo/transaction_sets/HIPAA_277/base.rb +77 -0
  137. data/lib/hippo/transaction_sets/HIPAA_277.rb +24 -0
  138. data/lib/hippo/transaction_sets/HIPAA_835/L1000A.rb +71 -0
  139. data/lib/hippo/transaction_sets/HIPAA_835/L1000B.rb +47 -0
  140. data/lib/hippo/transaction_sets/HIPAA_835/L2000.rb +37 -0
  141. data/lib/hippo/transaction_sets/HIPAA_835/L2100.rb +182 -0
  142. data/lib/hippo/transaction_sets/HIPAA_835/L2110.rb +85 -0
  143. data/lib/hippo/transaction_sets/HIPAA_835/base.rb +112 -0
  144. data/lib/hippo/transaction_sets/HIPAA_835.rb +12 -0
  145. data/lib/hippo/transaction_sets/HIPAA_837/L1000A.rb +30 -0
  146. data/lib/hippo/transaction_sets/HIPAA_837/L1000B.rb +21 -0
  147. data/lib/hippo/transaction_sets/HIPAA_837/L2000A.rb +65 -0
  148. data/lib/hippo/transaction_sets/HIPAA_837/L2000B.rb +49 -0
  149. data/lib/hippo/transaction_sets/HIPAA_837/L2000C.rb +42 -0
  150. data/lib/hippo/transaction_sets/HIPAA_837/L2010AA.rb +57 -0
  151. data/lib/hippo/transaction_sets/HIPAA_837/L2010AB.rb +33 -0
  152. data/lib/hippo/transaction_sets/HIPAA_837/L2010AC.rb +51 -0
  153. data/lib/hippo/transaction_sets/HIPAA_837/L2010BA.rb +74 -0
  154. data/lib/hippo/transaction_sets/HIPAA_837/L2010BB.rb +48 -0
  155. data/lib/hippo/transaction_sets/HIPAA_837/L2010CA.rb +72 -0
  156. data/lib/hippo/transaction_sets/HIPAA_837/L2300.rb +510 -0
  157. data/lib/hippo/transaction_sets/HIPAA_837/L2310A.rb +26 -0
  158. data/lib/hippo/transaction_sets/HIPAA_837/L2310B.rb +37 -0
  159. data/lib/hippo/transaction_sets/HIPAA_837/L2310C.rb +52 -0
  160. data/lib/hippo/transaction_sets/HIPAA_837/L2310D.rb +27 -0
  161. data/lib/hippo/transaction_sets/HIPAA_837/L2310E.rb +34 -0
  162. data/lib/hippo/transaction_sets/HIPAA_837/L2310F.rb +34 -0
  163. data/lib/hippo/transaction_sets/HIPAA_837/L2320.rb +122 -0
  164. data/lib/hippo/transaction_sets/HIPAA_837/L2330A.rb +43 -0
  165. data/lib/hippo/transaction_sets/HIPAA_837/L2330B.rb +92 -0
  166. data/lib/hippo/transaction_sets/HIPAA_837/L2330C.rb +26 -0
  167. data/lib/hippo/transaction_sets/HIPAA_837/L2330D.rb +26 -0
  168. data/lib/hippo/transaction_sets/HIPAA_837/L2330E.rb +27 -0
  169. data/lib/hippo/transaction_sets/HIPAA_837/L2330F.rb +27 -0
  170. data/lib/hippo/transaction_sets/HIPAA_837/L2330G.rb +26 -0
  171. data/lib/hippo/transaction_sets/HIPAA_837/L2400.rb +475 -0
  172. data/lib/hippo/transaction_sets/HIPAA_837/L2410.rb +30 -0
  173. data/lib/hippo/transaction_sets/HIPAA_837/L2420A.rb +37 -0
  174. data/lib/hippo/transaction_sets/HIPAA_837/L2420B.rb +26 -0
  175. data/lib/hippo/transaction_sets/HIPAA_837/L2420C.rb +41 -0
  176. data/lib/hippo/transaction_sets/HIPAA_837/L2420D.rb +27 -0
  177. data/lib/hippo/transaction_sets/HIPAA_837/L2420E.rb +51 -0
  178. data/lib/hippo/transaction_sets/HIPAA_837/L2420F.rb +26 -0
  179. data/lib/hippo/transaction_sets/HIPAA_837/L2420G.rb +34 -0
  180. data/lib/hippo/transaction_sets/HIPAA_837/L2420H.rb +34 -0
  181. data/lib/hippo/transaction_sets/HIPAA_837/L2430.rb +44 -0
  182. data/lib/hippo/transaction_sets/HIPAA_837/L2440.rb +23 -0
  183. data/lib/hippo/transaction_sets/HIPAA_837/base.rb +81 -0
  184. data/lib/hippo/transaction_sets/HIPAA_837.rb +45 -0
  185. data/lib/hippo/transaction_sets/HIPAA_999/L2000 - AK2.rb +30 -0
  186. data/lib/hippo/transaction_sets/HIPAA_999/L2000AK2.rb +30 -0
  187. data/lib/hippo/transaction_sets/HIPAA_999/L2100 - AK2.rb +37 -0
  188. data/lib/hippo/transaction_sets/HIPAA_999/L2100AK2.rb +37 -0
  189. data/lib/hippo/transaction_sets/HIPAA_999/L2110 - AK2.rb +23 -0
  190. data/lib/hippo/transaction_sets/HIPAA_999/L2110AK2.rb +23 -0
  191. data/lib/hippo/transaction_sets/HIPAA_999/base.rb +46 -0
  192. data/lib/hippo/transaction_sets/HIPAA_999.rb +10 -0
  193. data/lib/hippo/transaction_sets/base.rb +136 -0
  194. data/lib/hippo/transaction_sets.rb +11 -0
  195. data/lib/hippo/version.rb +3 -0
  196. data/lib/hippo.rb +15 -0
  197. data/samples/835_4010.edi +1 -0
  198. data/samples/837_4010A1.edi +1 -0
  199. data/test/test_helper.rb +118 -0
  200. data/test/test_hipaa_837.rb +396 -0
  201. data/test/test_segments_base.rb +106 -0
  202. data/test/test_transaction_sets_base.rb +85 -0
  203. metadata +277 -0
@@ -0,0 +1,85 @@
1
+ require_relative './test_helper'
2
+
3
+ class TestTransactionSetBase < MiniTest::Unit::TestCase
4
+ def test_preset_values_are_set
5
+ ts = Hippo::TransactionSets::Test::Base.new
6
+ ts.TCS
7
+ ts.TSS.build
8
+
9
+ assert_equal 'TSS*Blah~TCS***Preset Field 7~', ts.to_s
10
+ end
11
+
12
+ def test_segment_ordering_is_correct
13
+ ts = Hippo::TransactionSets::Test::Base.new
14
+ ts.TCS.Field1 = 'Foo'
15
+ ts.TSS.Field2 = 'Bar'
16
+
17
+ assert_equal 'TSS*Blah*Bar~TCS*Foo**Preset Field 7~', ts.to_s
18
+ end
19
+
20
+ def test_raises_error_on_invalid_segment
21
+ ts = Hippo::TransactionSets::Test::Base.new
22
+ assert_raises Hippo::Exceptions::InvalidSegment do
23
+ ts.BLAH {|blah| }
24
+ end
25
+ end
26
+
27
+ def test_identified_by_values_are_set
28
+ ts = Hippo::TransactionSets::Test::Base.new
29
+ ts.L0001 {|l0001| }
30
+
31
+ assert_equal 'TSS*Foo~', ts.to_s
32
+
33
+ end
34
+
35
+ def test_accessing_sements_with_same_segment_id
36
+ ts = Hippo::TransactionSets::Test::Base.new
37
+ ts.TSS.Field2 = 'Bar'
38
+ ts.TCS.Field1 = 'Foo'
39
+ ts.TSS_02.Field2 = 'Baz'
40
+
41
+ assert_equal 'TSS*Blah*Bar~TCS*Foo**Preset Field 7~TSS*Last Segment*Baz~', ts.to_s
42
+ end
43
+
44
+ def test_assigning_segment_values_with_block_syntax
45
+ ts = Hippo::TransactionSets::Test::Base.new
46
+
47
+ ts.TSS do |tss|
48
+ tss.Field2 = 'Bar'
49
+ tss.Field3 = 'Baz'
50
+ end
51
+
52
+ ts.TCS do |tcs|
53
+ tcs.Field1 = 'Blah'
54
+ tcs.CompositeCommonName_02 = 'CNBlah'
55
+ end
56
+
57
+ ts.TSS_02 do |tss|
58
+ tss.Field2 = 'Boo'
59
+ end
60
+
61
+ assert_equal 'TSS*Blah*Bar*Baz~TCS*Blah*:::CNBlah*Preset Field 7~TSS*Last Segment*Boo~', ts.to_s
62
+
63
+ # test nexted block syntax on non-looping component
64
+ ts.L0001 do |l0001|
65
+ l0001.TSS do |tss|
66
+ tss.Field2 = 'SubBar'
67
+ end
68
+ end
69
+
70
+ assert_equal 'TSS*Blah*Bar*Baz~TCS*Blah*:::CNBlah*Preset Field 7~TSS*Last Segment*Boo~TSS*Foo*SubBar~', ts.to_s
71
+
72
+ # test nexted block syntax on non-looping component
73
+ ts.L0002 do |l0002|
74
+ l0002.TCS do |tcs|
75
+ tcs.Field2 = 'SubBarBlah'
76
+ end
77
+
78
+ l0002.TSS do |tss|
79
+ tss.Field2 = 'SubBarRepeater'
80
+ end
81
+ end
82
+
83
+ assert_equal 'TSS*Blah*Bar*Baz~TCS*Blah*:::CNBlah*Preset Field 7~TSS*Last Segment*Boo~TSS*Foo*SubBar~TCS*:SubBarBlah**Foo2~TSS*Last Segment*SubBarRepeater~', ts.to_s
84
+ end
85
+ end
metadata ADDED
@@ -0,0 +1,277 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hippo
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.4
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Robert Jackson
9
+ - Jon Jackson
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2011-09-10 00:00:00.000000000Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: minitest
17
+ requirement: &70268911370780 !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: '0'
23
+ type: :development
24
+ prerelease: false
25
+ version_requirements: *70268911370780
26
+ - !ruby/object:Gem::Dependency
27
+ name: rake
28
+ requirement: &70268911369560 !ruby/object:Gem::Requirement
29
+ none: false
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 0.9.2
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: *70268911369560
37
+ description: HIPAA Transaction Set Generator/Parser
38
+ email:
39
+ - robertj@promedicalinc.com
40
+ executables:
41
+ - demo_270.rb
42
+ - demo_276.rb
43
+ - demo_835.rb
44
+ extensions: []
45
+ extra_rdoc_files: []
46
+ files:
47
+ - .gitignore
48
+ - CHANGELOG
49
+ - Gemfile
50
+ - Guardfile
51
+ - README.md
52
+ - Rakefile
53
+ - bin/demo_270.rb
54
+ - bin/demo_276.rb
55
+ - bin/demo_835.rb
56
+ - hippo.gemspec
57
+ - lib/hippo.rb
58
+ - lib/hippo/exceptions.rb
59
+ - lib/hippo/field.rb
60
+ - lib/hippo/loop.rb
61
+ - lib/hippo/parser.rb
62
+ - lib/hippo/samples/835.edi
63
+ - lib/hippo/samples/sample_835_with.rb
64
+ - lib/hippo/samples/sample_parsed.rb
65
+ - lib/hippo/segments.rb
66
+ - lib/hippo/segments/AK1.rb
67
+ - lib/hippo/segments/AK2.rb
68
+ - lib/hippo/segments/AK9.rb
69
+ - lib/hippo/segments/AMT.rb
70
+ - lib/hippo/segments/BHT.rb
71
+ - lib/hippo/segments/BPR.rb
72
+ - lib/hippo/segments/CAS.rb
73
+ - lib/hippo/segments/CL1.rb
74
+ - lib/hippo/segments/CLM.rb
75
+ - lib/hippo/segments/CLP.rb
76
+ - lib/hippo/segments/CN1.rb
77
+ - lib/hippo/segments/CR1.rb
78
+ - lib/hippo/segments/CR2.rb
79
+ - lib/hippo/segments/CR3.rb
80
+ - lib/hippo/segments/CR4.rb
81
+ - lib/hippo/segments/CR5.rb
82
+ - lib/hippo/segments/CR6.rb
83
+ - lib/hippo/segments/CR7.rb
84
+ - lib/hippo/segments/CR8.rb
85
+ - lib/hippo/segments/CRC.rb
86
+ - lib/hippo/segments/CTP.rb
87
+ - lib/hippo/segments/CTX.rb
88
+ - lib/hippo/segments/CUR.rb
89
+ - lib/hippo/segments/DMG.rb
90
+ - lib/hippo/segments/DN1.rb
91
+ - lib/hippo/segments/DN2.rb
92
+ - lib/hippo/segments/DSB.rb
93
+ - lib/hippo/segments/DTM.rb
94
+ - lib/hippo/segments/DTP.rb
95
+ - lib/hippo/segments/FRM.rb
96
+ - lib/hippo/segments/GE.rb
97
+ - lib/hippo/segments/GS.rb
98
+ - lib/hippo/segments/HCP.rb
99
+ - lib/hippo/segments/HI.rb
100
+ - lib/hippo/segments/HL.rb
101
+ - lib/hippo/segments/HSD.rb
102
+ - lib/hippo/segments/IEA.rb
103
+ - lib/hippo/segments/IK3.rb
104
+ - lib/hippo/segments/IK4.rb
105
+ - lib/hippo/segments/IK5.rb
106
+ - lib/hippo/segments/IMM.rb
107
+ - lib/hippo/segments/ISA.rb
108
+ - lib/hippo/segments/K3.rb
109
+ - lib/hippo/segments/LIN.rb
110
+ - lib/hippo/segments/LQ.rb
111
+ - lib/hippo/segments/LX.rb
112
+ - lib/hippo/segments/MEA.rb
113
+ - lib/hippo/segments/MIA.rb
114
+ - lib/hippo/segments/MOA.rb
115
+ - lib/hippo/segments/N1.rb
116
+ - lib/hippo/segments/N2.rb
117
+ - lib/hippo/segments/N3.rb
118
+ - lib/hippo/segments/N4.rb
119
+ - lib/hippo/segments/NM1.rb
120
+ - lib/hippo/segments/NTE.rb
121
+ - lib/hippo/segments/OI.rb
122
+ - lib/hippo/segments/PAT.rb
123
+ - lib/hippo/segments/PER.rb
124
+ - lib/hippo/segments/PLB.rb
125
+ - lib/hippo/segments/PRV.rb
126
+ - lib/hippo/segments/PS1.rb
127
+ - lib/hippo/segments/PWK.rb
128
+ - lib/hippo/segments/QTY.rb
129
+ - lib/hippo/segments/RDM.rb
130
+ - lib/hippo/segments/REF.rb
131
+ - lib/hippo/segments/SBR.rb
132
+ - lib/hippo/segments/SE.rb
133
+ - lib/hippo/segments/ST.rb
134
+ - lib/hippo/segments/STC.rb
135
+ - lib/hippo/segments/SV1.rb
136
+ - lib/hippo/segments/SV2.rb
137
+ - lib/hippo/segments/SV3.rb
138
+ - lib/hippo/segments/SV4.rb
139
+ - lib/hippo/segments/SV5.rb
140
+ - lib/hippo/segments/SV6.rb
141
+ - lib/hippo/segments/SV7.rb
142
+ - lib/hippo/segments/SVC.rb
143
+ - lib/hippo/segments/SVD.rb
144
+ - lib/hippo/segments/TOO.rb
145
+ - lib/hippo/segments/TRN.rb
146
+ - lib/hippo/segments/TS2.rb
147
+ - lib/hippo/segments/TS3.rb
148
+ - lib/hippo/segments/UR.rb
149
+ - lib/hippo/segments/base.rb
150
+ - lib/hippo/transaction_sets.rb
151
+ - lib/hippo/transaction_sets/HIPAA_276.rb
152
+ - lib/hippo/transaction_sets/HIPAA_276/L2000A.rb
153
+ - lib/hippo/transaction_sets/HIPAA_276/L2000B.rb
154
+ - lib/hippo/transaction_sets/HIPAA_276/L2000C.rb
155
+ - lib/hippo/transaction_sets/HIPAA_276/L2000D.rb
156
+ - lib/hippo/transaction_sets/HIPAA_276/L2000E.rb
157
+ - lib/hippo/transaction_sets/HIPAA_276/L2100A.rb
158
+ - lib/hippo/transaction_sets/HIPAA_276/L2100B.rb
159
+ - lib/hippo/transaction_sets/HIPAA_276/L2100C.rb
160
+ - lib/hippo/transaction_sets/HIPAA_276/L2100D.rb
161
+ - lib/hippo/transaction_sets/HIPAA_276/L2100E.rb
162
+ - lib/hippo/transaction_sets/HIPAA_276/L2200D.rb
163
+ - lib/hippo/transaction_sets/HIPAA_276/L2200E.rb
164
+ - lib/hippo/transaction_sets/HIPAA_276/L2210D.rb
165
+ - lib/hippo/transaction_sets/HIPAA_276/L2210E.rb
166
+ - lib/hippo/transaction_sets/HIPAA_276/base.rb
167
+ - lib/hippo/transaction_sets/HIPAA_277.rb
168
+ - lib/hippo/transaction_sets/HIPAA_277/L2000A.rb
169
+ - lib/hippo/transaction_sets/HIPAA_277/L2000B.rb
170
+ - lib/hippo/transaction_sets/HIPAA_277/L2000C.rb
171
+ - lib/hippo/transaction_sets/HIPAA_277/L2000D.rb
172
+ - lib/hippo/transaction_sets/HIPAA_277/L2000E.rb
173
+ - lib/hippo/transaction_sets/HIPAA_277/L2100A.rb
174
+ - lib/hippo/transaction_sets/HIPAA_277/L2100B.rb
175
+ - lib/hippo/transaction_sets/HIPAA_277/L2100C.rb
176
+ - lib/hippo/transaction_sets/HIPAA_277/L2100D.rb
177
+ - lib/hippo/transaction_sets/HIPAA_277/L2100E.rb
178
+ - lib/hippo/transaction_sets/HIPAA_277/L2200A.rb
179
+ - lib/hippo/transaction_sets/HIPAA_277/L2200B.rb
180
+ - lib/hippo/transaction_sets/HIPAA_277/L2200C.rb
181
+ - lib/hippo/transaction_sets/HIPAA_277/L2200D.rb
182
+ - lib/hippo/transaction_sets/HIPAA_277/L2200E.rb
183
+ - lib/hippo/transaction_sets/HIPAA_277/L2220D.rb
184
+ - lib/hippo/transaction_sets/HIPAA_277/L2220E.rb
185
+ - lib/hippo/transaction_sets/HIPAA_277/base.rb
186
+ - lib/hippo/transaction_sets/HIPAA_835.rb
187
+ - lib/hippo/transaction_sets/HIPAA_835/L1000A.rb
188
+ - lib/hippo/transaction_sets/HIPAA_835/L1000B.rb
189
+ - lib/hippo/transaction_sets/HIPAA_835/L2000.rb
190
+ - lib/hippo/transaction_sets/HIPAA_835/L2100.rb
191
+ - lib/hippo/transaction_sets/HIPAA_835/L2110.rb
192
+ - lib/hippo/transaction_sets/HIPAA_835/base.rb
193
+ - lib/hippo/transaction_sets/HIPAA_837.rb
194
+ - lib/hippo/transaction_sets/HIPAA_837/L1000A.rb
195
+ - lib/hippo/transaction_sets/HIPAA_837/L1000B.rb
196
+ - lib/hippo/transaction_sets/HIPAA_837/L2000A.rb
197
+ - lib/hippo/transaction_sets/HIPAA_837/L2000B.rb
198
+ - lib/hippo/transaction_sets/HIPAA_837/L2000C.rb
199
+ - lib/hippo/transaction_sets/HIPAA_837/L2010AA.rb
200
+ - lib/hippo/transaction_sets/HIPAA_837/L2010AB.rb
201
+ - lib/hippo/transaction_sets/HIPAA_837/L2010AC.rb
202
+ - lib/hippo/transaction_sets/HIPAA_837/L2010BA.rb
203
+ - lib/hippo/transaction_sets/HIPAA_837/L2010BB.rb
204
+ - lib/hippo/transaction_sets/HIPAA_837/L2010CA.rb
205
+ - lib/hippo/transaction_sets/HIPAA_837/L2300.rb
206
+ - lib/hippo/transaction_sets/HIPAA_837/L2310A.rb
207
+ - lib/hippo/transaction_sets/HIPAA_837/L2310B.rb
208
+ - lib/hippo/transaction_sets/HIPAA_837/L2310C.rb
209
+ - lib/hippo/transaction_sets/HIPAA_837/L2310D.rb
210
+ - lib/hippo/transaction_sets/HIPAA_837/L2310E.rb
211
+ - lib/hippo/transaction_sets/HIPAA_837/L2310F.rb
212
+ - lib/hippo/transaction_sets/HIPAA_837/L2320.rb
213
+ - lib/hippo/transaction_sets/HIPAA_837/L2330A.rb
214
+ - lib/hippo/transaction_sets/HIPAA_837/L2330B.rb
215
+ - lib/hippo/transaction_sets/HIPAA_837/L2330C.rb
216
+ - lib/hippo/transaction_sets/HIPAA_837/L2330D.rb
217
+ - lib/hippo/transaction_sets/HIPAA_837/L2330E.rb
218
+ - lib/hippo/transaction_sets/HIPAA_837/L2330F.rb
219
+ - lib/hippo/transaction_sets/HIPAA_837/L2330G.rb
220
+ - lib/hippo/transaction_sets/HIPAA_837/L2400.rb
221
+ - lib/hippo/transaction_sets/HIPAA_837/L2410.rb
222
+ - lib/hippo/transaction_sets/HIPAA_837/L2420A.rb
223
+ - lib/hippo/transaction_sets/HIPAA_837/L2420B.rb
224
+ - lib/hippo/transaction_sets/HIPAA_837/L2420C.rb
225
+ - lib/hippo/transaction_sets/HIPAA_837/L2420D.rb
226
+ - lib/hippo/transaction_sets/HIPAA_837/L2420E.rb
227
+ - lib/hippo/transaction_sets/HIPAA_837/L2420F.rb
228
+ - lib/hippo/transaction_sets/HIPAA_837/L2420G.rb
229
+ - lib/hippo/transaction_sets/HIPAA_837/L2420H.rb
230
+ - lib/hippo/transaction_sets/HIPAA_837/L2430.rb
231
+ - lib/hippo/transaction_sets/HIPAA_837/L2440.rb
232
+ - lib/hippo/transaction_sets/HIPAA_837/base.rb
233
+ - lib/hippo/transaction_sets/HIPAA_999.rb
234
+ - lib/hippo/transaction_sets/HIPAA_999/L2000 - AK2.rb
235
+ - lib/hippo/transaction_sets/HIPAA_999/L2000AK2.rb
236
+ - lib/hippo/transaction_sets/HIPAA_999/L2100 - AK2.rb
237
+ - lib/hippo/transaction_sets/HIPAA_999/L2100AK2.rb
238
+ - lib/hippo/transaction_sets/HIPAA_999/L2110 - AK2.rb
239
+ - lib/hippo/transaction_sets/HIPAA_999/L2110AK2.rb
240
+ - lib/hippo/transaction_sets/HIPAA_999/base.rb
241
+ - lib/hippo/transaction_sets/base.rb
242
+ - lib/hippo/version.rb
243
+ - samples/835_4010.edi
244
+ - samples/837_4010A1.edi
245
+ - test/test_helper.rb
246
+ - test/test_hipaa_837.rb
247
+ - test/test_segments_base.rb
248
+ - test/test_transaction_sets_base.rb
249
+ homepage: http://github.com/promedical/hippo
250
+ licenses: []
251
+ post_install_message:
252
+ rdoc_options: []
253
+ require_paths:
254
+ - lib
255
+ required_ruby_version: !ruby/object:Gem::Requirement
256
+ none: false
257
+ requirements:
258
+ - - ! '>='
259
+ - !ruby/object:Gem::Version
260
+ version: '0'
261
+ required_rubygems_version: !ruby/object:Gem::Requirement
262
+ none: false
263
+ requirements:
264
+ - - ! '>='
265
+ - !ruby/object:Gem::Version
266
+ version: '0'
267
+ requirements: []
268
+ rubyforge_project: hippo
269
+ rubygems_version: 1.8.6
270
+ signing_key:
271
+ specification_version: 3
272
+ summary: HIPAA Transaction Set Generator/Parser
273
+ test_files:
274
+ - test/test_helper.rb
275
+ - test/test_hipaa_837.rb
276
+ - test/test_segments_base.rb
277
+ - test/test_transaction_sets_base.rb