sferik/mtgox

View on GitHub
lib/mtgox/version.rb

Summary

Maintainability
A
0 mins
Test Coverage
module MtGox
  class Version
    MAJOR = 1
    MINOR = 1
    PATCH = 0
    PRE = nil

    class << self
      # @return [String]
      def to_s
        [MAJOR, MINOR, PATCH, PRE].compact.join('.')
      end
    end
  end

  VERSION = Version.to_s
end