Class: Rdmm::Resources::AuthorResource
Instance Attribute Summary
Attributes inherited from BaseResource
#source
Instance Method Summary
collapse
#initialize
Instance Method Details
#another_name ⇒ String?
5
6
7
|
# File 'lib/rdmm/resources/author_resource.rb', line 5
def another_name
source["another_name"]
end
|
#id ⇒ Integer?
10
11
12
|
# File 'lib/rdmm/resources/author_resource.rb', line 10
def id
source["author_id"]
end
|
#list_url ⇒ String?
15
16
17
|
# File 'lib/rdmm/resources/author_resource.rb', line 15
def list_url
source["list_url"]
end
|
#name ⇒ String?
20
21
22
|
# File 'lib/rdmm/resources/author_resource.rb', line 20
def name
source["name"]
end
|
#ruby ⇒ String?
25
26
27
|
# File 'lib/rdmm/resources/author_resource.rb', line 25
def ruby
source["ruby"]
end
|