scotdalton/exlibris-aleph

View on GitHub
lib/exlibris/aleph/table/reader/matcher/patron_statuses.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Exlibris
  module Aleph
    module Table
      module Reader
        module Matcher
          class PatronStatuses < Base
            REGEXP = /^BOR-STATUS\s{10}\s.{5}\sL\s(.{50})\s(.*)$/

            def initialize(string)
              super(REGEXP, string)
            end
          end
        end
      end
    end
  end
end