summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Turnbull <james@ubuntu904.lovedthanlost.net>2009-05-26 13:41:29 +1000
committerJames Turnbull <james@ubuntu904.lovedthanlost.net>2009-05-26 13:41:29 +1000
commitcb4a4d3344169a75224caa6488e3aa59f85218de (patch)
tree0e30930831ee3dd1fd1fc8f9ff2a495eb121abd2
parent99f666f31c79c6c163881f3f664e59707a176753 (diff)
downloadpuppet-cb4a4d3344169a75224caa6488e3aa59f85218de.tar.gz
puppet-cb4a4d3344169a75224caa6488e3aa59f85218de.tar.xz
puppet-cb4a4d3344169a75224caa6488e3aa59f85218de.zip
Changed version to allow Rake to work. Minor
edit to Rakefile
-rw-r--r--Rakefile6
-rw-r--r--lib/puppet.rb2
2 files changed, 7 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 6d0126cec..c0819aa04 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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