Sha256: fb8aa014a9218e02c9878e95b11ee8be719460781530ec4104558620bee61be0

Contents?: true

Size: 506 Bytes

Versions: 4

Compression:

Stored size: 506 Bytes

Contents

require 'money_s3/parsers/base_parser'

module MoneyS3
  module Parsers
    class Cinnost
      include BaseParser

      def zkrat
        at 'Zkrat'
      end

      def nazev
        at 'Nazev'
      end

      def pozn
        at 'Pozn'
      end

      def to_h_with_attrs
        hash = HashWithAttributes.new({}, attributes)

        hash[:zkrat] = zkrat if has? 'Zkrat'
        hash[:nazev] = nazev if has? 'Nazev'
        hash[:pozn] = pozn if has? 'Pozn'

        hash
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
money_s3-0.10.0 lib/money_s3/parsers/cinnost.rb
money_s3-0.9.0 lib/money_s3/parsers/cinnost.rb
money_s3-0.8.0 lib/money_s3/parsers/cinnost.rb
money_s3-0.7.0 lib/money_s3/parsers/cinnost.rb