Sha256: 9d9932e4fcb650d3d4ea257f62edfbc169510d9bdf6f76527f5441ad73c03097

Contents?: true

Size: 409 Bytes

Versions: 1

Compression:

Stored size: 409 Bytes

Contents

#--
# Ruby Whois
#
# An intelligent pure Ruby WHOIS client and parser.
#
# Copyright (c) 2009-2011 Simone Carletti <weppos@weppos.net>
#++


module Whois

  # Holds information about library version.
  module Version
    MAJOR = 2
    MINOR = 0
    PATCH = 2
    BUILD = nil

    STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join(".")
  end

  # The current library version.
  VERSION = Version::STRING

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
whois-2.0.2 lib/whois/version.rb