glitch-soc/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-24 10:21:08 -04:00
5
end
def patch
2017-08-06 17:53:25 -04:00
1
end
def pre
2017-05-28 13:30:38 -04:00
nil
end
2017-07-24 10:21:08 -04:00
def flags
2017-08-01 09:12:07 -04:00
''
2017-07-24 10:21:08 -04:00
end
def to_a
[major, minor, patch, pre].compact
end
def to_s
2017-07-24 10:21:08 -04:00
[to_a.join('.'), flags].join
end
end
end