Class: Bridgetown::Paginate::PageTrail
- Inherits:
-
Object
- Object
- Bridgetown::Paginate::PageTrail
- Defined in:
- bridgetown-paginate/lib/bridgetown-paginate/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
Constructor Details
#initialize(num, path, title) ⇒ PageTrail
Returns a new instance of PageTrail.
129 130 131 132 133 |
# File 'bridgetown-paginate/lib/bridgetown-paginate/paginator.rb', line 129 def initialize(num, path, title) @num = num @path = path @title = title end |
Instance Attribute Details
#num ⇒ Object (readonly)
Returns the value of attribute num.
127 128 129 |
# File 'bridgetown-paginate/lib/bridgetown-paginate/paginator.rb', line 127 def num @num end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
127 128 129 |
# File 'bridgetown-paginate/lib/bridgetown-paginate/paginator.rb', line 127 def path @path end |
#title ⇒ Object (readonly)
Returns the value of attribute title.
127 128 129 |
# File 'bridgetown-paginate/lib/bridgetown-paginate/paginator.rb', line 127 def title @title end |
Instance Method Details
#to_liquid ⇒ Object
135 136 137 138 139 140 141 |
# File 'bridgetown-paginate/lib/bridgetown-paginate/paginator.rb', line 135 def to_liquid { "num" => num, "path" => path, "title" => title, } end |