Class: LinkedIn::Education
- Inherits:
-
Base
- Object
- Base
- LinkedIn::Education
show all
- Defined in:
- lib/linked_in/education.rb
Defined Under Namespace
Classes: Resource
Instance Attribute Summary
Attributes inherited from Base
#doc
Instance Method Summary
collapse
Methods inherited from Base
from_xml, #initialize
Constructor Details
This class inherits a constructor from LinkedIn::Base
Instance Method Details
#educations ⇒ Object
4
5
6
7
8
9
|
# File 'lib/linked_in/education.rb', line 4
def educations
@educations ||= @doc.children.inject([]) do |list, edu|
list << Resource.new(edu) unless edu.blank?
list
end
end
|