Class: MisarBlog::Models::Series
- Inherits:
-
Base
- Object
- Base
- MisarBlog::Models::Series
show all
- Defined in:
- lib/misarblog/models.rb
Overview
A series/collection of articles.
Instance Attribute Summary
Attributes inherited from Base
#raw
Instance Method Summary
collapse
Methods inherited from Base
#[], #initialize, #to_h
Instance Method Details
#article_count ⇒ Object
50
|
# File 'lib/misarblog/models.rb', line 50
def article_count; @raw["article_count"]; end
|
#created_at ⇒ Object
51
|
# File 'lib/misarblog/models.rb', line 51
def created_at; @raw["created_at"]; end
|
#description ⇒ Object
49
|
# File 'lib/misarblog/models.rb', line 49
def description; @raw["description"]; end
|
#id ⇒ Object
46
|
# File 'lib/misarblog/models.rb', line 46
def id; @raw["id"]; end
|
#slug ⇒ Object
47
|
# File 'lib/misarblog/models.rb', line 47
def slug; @raw["slug"]; end
|
#title ⇒ Object
48
|
# File 'lib/misarblog/models.rb', line 48
def title; @raw["title"]; end
|