Sha256: b1dd5c6d9bea192dabb9d869c1d8426018aabcf963cbd74eb17748abdde3d56d

Contents?: true

Size: 665 Bytes

Versions: 1

Compression:

Stored size: 665 Bytes

Contents

# Returns the version of the gem  as a <tt>Gem::Version</tt>
module CelluloidPubsub
  #  it prints the gem version as a string
  #
  # @return [String]
  #
  # @api public
  def self.gem_version
    Gem::Version.new VERSION::STRING
  end

  # module used to generate the version string
  # provides a easy way of getting the major, minor and tiny
  module VERSION
    # major release version
    MAJOR = 0
    # minor release version
    MINOR = 4
    # tiny release version
    TINY = 2
    # prelease version ( set this only if it is a prelease)
    PRE = nil

    # generates the version string
    STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
celluloid_pubsub-0.4.2 lib/celluloid_pubsub/version.rb