chinwagsocial/lib/mastodon/version.rb

36 lines
370 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Mastodon
module Version
module_function
def major
1
end
def minor
2017-07-25 00:21:08 +10:00
5
end
def patch
2017-08-07 07:53:25 +10:00
1
end
def pre
2017-05-29 03:30:38 +10:00
nil
end
2017-07-25 00:21:08 +10:00
def flags
2017-08-01 23:12:07 +10:00
''
2017-07-25 00:21:08 +10:00
end
def to_a
[major, minor, patch, pre].compact
end
def to_s
2017-07-25 00:21:08 +10:00
[to_a.join('.'), flags].join
end
end
end