module Ontopia::TLDR::Version
Constants
- MAJOR
- MINOR
- TINY
Public Class Methods
to_a()
click to toggle source
Returns array representation.
# File lib/ontopia/tldr/version.rb, line 36 def to_a [MAJOR, MINOR, TINY] end
to_s()
click to toggle source
Short-cut for version string.
# File lib/ontopia/tldr/version.rb, line 41 def to_s to_a.join('.') end