File: version.rb

package info (click to toggle)
ruby-enumerable-statistics 2.0.8%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,148 kB
  • sloc: ruby: 2,270; ansic: 2,031; javascript: 408; makefile: 8; sh: 4
file content (9 lines) | stat: -rw-r--r-- 198 bytes parent folder | download
1
2
3
4
5
6
7
8
9
module EnumerableStatistics
  VERSION = '2.0.8'

  module Version
    numbers, TAG = VERSION.split('-', 2)
    MAJOR, MINOR, MICRO = numbers.split('.', 3).map(&:to_i)
    STRING = VERSION
  end
end