Sha256: a95df408a3d1fee31fc3aaf262ecbbba55d36db37ec776af055c4d1eb6932c22

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-2013 Simone Carletti <weppos@weppos.net>
#++


module Whois

  # Holds information about library version.
  module Version
    MAJOR = 3
    MINOR = 4
    PATCH = 3
    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-3.4.3 lib/whois/version.rb