Sha256: 42cd9a43b8788397703686cfb74e6dbf97b3c0c339bce2178735cd22f3b8d12c

Contents?: true

Size: 537 Bytes

Versions: 1

Compression:

Stored size: 537 Bytes

Contents

# The version method and constant are isolated in puppet/version.rb so that a
# simple `require 'puppet/version'` allows a rubygems gemspec or bundler
# Gemfile to get the Puppet version of the gem install.
#
# The version is programatically settable because we want to allow the
# Raketasks and such to set the version based on the output of `git describe`
#
module Puppet
  PUPPETVERSION = '3.0.0-rc4'

  def self.version
    @puppet_version || PUPPETVERSION
  end

  def self.version=(version)
    @puppet_version = version
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
puppet-3.0.0.rc4 lib/puppet/version.rb