Class: LinkedIn::Skill
Defined Under Namespace
Classes: Resource
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from LinkedIn::Base
Instance Method Details
#skills ⇒ Object
4 5 6 7 8 9 10 11 12 |
# File 'lib/linked_in/skill.rb', line 4 def skills @array ||= begin @array = [] @doc.children.each do |skill| @array << Resource.new(skill) unless skill.blank? end @array end end |