Module: Jekyll::Pagination::Version
- Defined in:
- lib/jekyll/pagination/version.rb
Constant Summary collapse
- MAJOR =
0
- MINOR =
0
- TINY =
4
Class Method Summary collapse
-
.to_a ⇒ Object
Returns array representation.
-
.to_s ⇒ Object
Short-cut for version string.
Class Method Details
.to_a ⇒ Object
Returns array representation.
14 15 16 |
# File 'lib/jekyll/pagination/version.rb', line 14 def to_a [MAJOR, MINOR, TINY] end |
.to_s ⇒ Object
Short-cut for version string.
19 20 21 |
# File 'lib/jekyll/pagination/version.rb', line 19 def to_s to_a.join('.') end |