pcaprub/pcaprub

View on GitHub
lib/pcaprub/version.rb

Summary

Maintainability
A
0 mins
Test Coverage
module PCAPRUB #:nodoc:

  module VERSION #:nodoc:

    MAJOR = 0
    MINOR = 13
    TINY = 1

    STRING = [MAJOR, MINOR, TINY].join('.')

  end
  class Pcap
    def self.version
      return PCAPRUB::VERSION::STRING
    end
  end

end