File: version.rb

package info (click to toggle)
ruby-citrus 3.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 420 kB
  • sloc: ruby: 3,417; makefile: 5
file content (9 lines) | stat: -rw-r--r-- 203 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
module Citrus
  # The current version of Citrus as [major, minor, patch].
  VERSION = [3, 0, 2]

  # Returns the current version of Citrus as a string.
  def self.version
    VERSION.join('.')
  end
end