Sha256: ef77ab6d470b6b456ef93056d9c3e6585a4e9155b1e110fd947c40adfdd8c456
Contents?: true
Size: 416 Bytes
Versions: 4
Compression:
Stored size: 416 Bytes
Contents
require 'money_s3/parsers/base_parser' require 'money_s3/parsers/zasoba' module MoneyS3 module Parsers class SeznamZasoba include BaseParser def zasoba array_of_at(Zasoba, ['Zasoba']) end def to_h_with_attrs hash = HashWithAttributes.new({}, attributes) hash[:zasoba] = zasoba.map(&:to_h_with_attrs) if has? 'Zasoba' hash end end end end
Version data entries
4 entries across 4 versions & 1 rubygems