diff options
author | James Turnbull <james@ubuntu904.lovedthanlost.net> | 2009-05-26 13:41:29 +1000 |
---|---|---|
committer | James Turnbull <james@ubuntu904.lovedthanlost.net> | 2009-05-26 13:41:29 +1000 |
commit | cb4a4d3344169a75224caa6488e3aa59f85218de (patch) | |
tree | 0e30930831ee3dd1fd1fc8f9ff2a495eb121abd2 | |
parent | 99f666f31c79c6c163881f3f664e59707a176753 (diff) | |
download | puppet-cb4a4d3344169a75224caa6488e3aa59f85218de.tar.gz puppet-cb4a4d3344169a75224caa6488e3aa59f85218de.tar.xz puppet-cb4a4d3344169a75224caa6488e3aa59f85218de.zip |
Changed version to allow Rake to work. Minor
edit to Rakefile
-rw-r--r-- | Rakefile | 6 | ||||
-rw-r--r-- | lib/puppet.rb | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,7 @@ # Rakefile for Puppet -*- ruby -*- +$: << File.expand_path('lib') + require './lib/puppet.rb' require 'rake' require 'rake/packagetask' @@ -19,6 +21,10 @@ FILES = FileList[ 'spec/**/*' ] +task :default do + sh %{rake -T} +end + spec = Gem::Specification.new do |spec| spec.platform = Gem::Platform::RUBY spec.name = 'puppet' diff --git a/lib/puppet.rb b/lib/puppet.rb index 1e656c7fc..b216503c2 100644 --- a/lib/puppet.rb +++ b/lib/puppet.rb @@ -24,7 +24,7 @@ require 'puppet/util/suidmanager' # it's also a place to find top-level commands like 'debug' module Puppet - PUPPETVERSION = '0.25.0beta1' + PUPPETVERSION = '0.25.0' def Puppet.version return PUPPETVERSION |