Class: Otter::Author
- Inherits:
-
Base
- Object
- Base
- Otter::Author
show all
- Defined in:
- lib/otter/author.rb
Instance Attribute Summary
Attributes inherited from Base
#data
Instance Method Summary
collapse
Methods inherited from Base
create, #initialize
Constructor Details
This class inherits a constructor from Otter::Base
Instance Method Details
#description ⇒ Object
24
25
26
|
# File 'lib/otter/author.rb', line 24
def description
self.data['description']
end
|
#influence_level ⇒ Object
32
33
34
|
# File 'lib/otter/author.rb', line 32
def influence_level
self.data['influence_level']
end
|
#name ⇒ Object
12
13
14
|
# File 'lib/otter/author.rb', line 12
def name
self.data['name']
end
|
#nick ⇒ Object
20
21
22
|
# File 'lib/otter/author.rb', line 20
def nick
self.data['nick']
end
|
#photo_url ⇒ Object
40
41
42
|
# File 'lib/otter/author.rb', line 40
def photo_url
self.data['photo_url']
end
|
#topsy_author_url ⇒ Object
28
29
30
|
# File 'lib/otter/author.rb', line 28
def topsy_author_url
self.data['topsy_author_url']
end
|
#type ⇒ Object
16
17
18
|
# File 'lib/otter/author.rb', line 16
def type
self.data['type']
end
|