Sha256: ecea471355e052936501c9287ac682a78630f6e7af511df24a0564104832dedd

Contents?: true

Size: 367 Bytes

Versions: 1

Compression:

Stored size: 367 Bytes

Contents

# Returns the version of the currently loaded gem as a <tt>Gem::Version</tt>
module CapistranoMulticonfigParallel
  def self.gem_version
    Gem::Version.new VERSION::STRING
  end

  # module used for generating the version
  module VERSION

    MAJOR = 2
    MINOR = 0
    TINY = 0
    PRE = 'rc4'

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
capistrano_multiconfig_parallel-2.0.0.rc4 lib/capistrano_multiconfig_parallel/version.rb