File: version.rb

package info (click to toggle)
ruby-ntlm 0.6.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 408 kB
  • sloc: ruby: 2,663; makefile: 6
file content (11 lines) | stat: -rw-r--r-- 171 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
module Net
  module NTLM
    # @private
    module VERSION
      MAJOR = 0
      MINOR = 6
      TINY  = 3
      STRING = [MAJOR, MINOR, TINY].join('.')
    end
  end
end