Sha256: 45148b8f904d3d4083ad8f8518055633f165cdd48b952ddeb9eef75c2403d3b5

Contents?: true

Size: 425 Bytes

Versions: 4

Compression:

Stored size: 425 Bytes

Contents

require 'money_s3/parsers/base_parser'
require 'money_s3/parsers/cinnost'

module MoneyS3
  module Parsers
    class SeznamCinnosti
      include BaseParser

      def cinnost
        array_of_at(Cinnost, ['Cinnost'])
      end

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

        hash[:cinnost] = cinnost.map(&:to_h_with_attrs) if has? 'Cinnost'

        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/seznam_cinnosti.rb
money_s3-0.9.0 lib/money_s3/parsers/seznam_cinnosti.rb
money_s3-0.8.0 lib/money_s3/parsers/seznam_cinnosti.rb
money_s3-0.7.0 lib/money_s3/parsers/seznam_cinnosti.rb