File: version.rb

package info (click to toggle)
ruby-stomp 1.4.10-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 832 kB
  • sloc: ruby: 8,595; sh: 77; makefile: 3
file content (15 lines) | stat: -rw-r--r-- 278 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# -*- encoding: utf-8 -*-

module Stomp

  # Define the gem version.
  module Version  #:nodoc: all
    MAJOR = 1
    MINOR = 4
    PATCH = "10"
    MODLEVEL = ""
    STRING = "#{MAJOR}.#{MINOR}.#{PATCH}#{MODLEVEL}"
    # Alternate version string
    Version = STRING
  end
end