The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

36 lines
373 B

  1. # frozen_string_literal: true
  2. module Mastodon
  3. module Version
  4. module_function
  5. def major
  6. 1
  7. end
  8. def minor
  9. 5
  10. end
  11. def patch
  12. 0
  13. end
  14. def pre
  15. nil
  16. end
  17. def flags
  18. 'rc2'
  19. end
  20. def to_a
  21. [major, minor, patch, pre].compact
  22. end
  23. def to_s
  24. [to_a.join('.'), flags].join
  25. end
  26. end
  27. end