Class: Jekyll::PaginateV2::Generator::PageTrail
- Inherits:
-
Object
- Object
- Jekyll::PaginateV2::Generator::PageTrail
- Defined in:
- lib/jekyll-paginate-v2-redux/generator/paginator.rb
Overview
Small utility class that handles individual pagination trails and makes them easier to work with in Liquid
Instance Attribute Summary collapse
-
#num ⇒ Object
readonly
Returns the value of attribute num.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
-
#title ⇒ Object
readonly
Returns the value of attribute title.
Instance Method Summary collapse
-
#initialize(num, path, title) ⇒ PageTrail
constructor
A new instance of PageTrail.
-
#to_liquid ⇒ Object
func initialize.
Constructor Details
#initialize(num, path, title) ⇒ PageTrail
68 69 70 71 72 |
# File 'lib/jekyll-paginate-v2-redux/generator/paginator.rb', line 68 def initialize( num, path, title ) @num = num @path = path @title = title end |
Instance Attribute Details
#num ⇒ Object (readonly)
Returns the value of attribute num.
66 67 68 |
# File 'lib/jekyll-paginate-v2-redux/generator/paginator.rb', line 66 def num @num end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
66 67 68 |
# File 'lib/jekyll-paginate-v2-redux/generator/paginator.rb', line 66 def path @path end |
#title ⇒ Object (readonly)
Returns the value of attribute title.
66 67 68 |
# File 'lib/jekyll-paginate-v2-redux/generator/paginator.rb', line 66 def title @title end |
Instance Method Details
#to_liquid ⇒ Object
func initialize
74 75 76 77 78 79 80 |
# File 'lib/jekyll-paginate-v2-redux/generator/paginator.rb', line 74 def to_liquid { 'num' => num, 'path' => path+"index.html", 'title' => title } end |