mogox/ruby-hl7

View on GitHub
lib/core_ext/string.rb

Summary

Maintainability
A
0 mins
Test Coverage
# Adding a helper to the String class for the batch parse.
class String
  def hl7_batch?
    match(/^FHS/)
  end
end