cybre-space/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 15:21:08 +01:00
5
end
def patch
2017-08-06 22:53:25 +01:00
1
end
def pre
2017-05-28 18:30:38 +01:00
nil
end
2017-07-24 15:21:08 +01:00
def flags
2017-08-01 14:12:07 +01:00
''
2017-07-24 15:21:08 +01:00
end
def to_a
[major, minor, patch, pre].compact
end
def to_s
2017-07-24 15:21:08 +01:00
[to_a.join('.'), flags].join
end
end
end