Class: LinkedIn::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/linked_in/base.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(doc) ⇒ Base

Returns a new instance of Base.



10
11
12
# File 'lib/linked_in/base.rb', line 10

def initialize(doc)
  @doc = doc
end

Instance Attribute Details

#docObject

Returns the value of attribute doc.



4
5
6
# File 'lib/linked_in/base.rb', line 4

def doc
  @doc
end

Class Method Details

.from_xml(doc) ⇒ Object



6
7
8
# File 'lib/linked_in/base.rb', line 6

def self.from_xml(doc)
  new(Nokogiri::XML(doc))
end