Sha256: 55a1fe3a583f75fd62085520f5985f25dbecfeeef903d9d88c8e71efd5282961

Contents?: true

Size: 260 Bytes

Versions: 1

Compression:

Stored size: 260 Bytes

Contents

module LinkedIn
  class Recipients
    
    attr_accessor :recipients
    
    def to_xml
      str = ''
      recipients.each do |recipient|
        str << "<recipient><person path=#{recipient.person.path}/></recipient>"
      end
      str
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
linkedin-idkmybffjill-0.1.9 lib/linked_in/recipients.rb