summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel DeLeo <dan@opscode.com>2011-12-01 16:32:44 -0800
committerDaniel DeLeo <dan@opscode.com>2011-12-01 16:32:54 -0800
commit2741608a53ce29bf2d6df78f9e06e7e77d3459bf (patch)
tree2e5594533a218893c4f1c1b341399281c80c57b1
parent29701b4cb3969fdc308320fa6e23b6659bd4b0a3 (diff)
downloadmixlib-shellout-2741608a53ce29bf2d6df78f9e06e7e77d3459bf.tar.gz
ShellOut not Shellout1.0.0.rc.0
-rw-r--r--Rakefile2
-rw-r--r--lib/mixlib/shellout/version.rb2
-rw-r--r--mixlib-shellout.gemspec2
3 files changed, 3 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index 17b0501..87a69ac 100644
--- a/Rakefile
+++ b/Rakefile
@@ -15,7 +15,7 @@ end
desc "Build it and ship it"
task :ship => :gem do
- sh("git tag #{Mixlib::ShellOut::Version}")
+ sh("git tag #{Mixlib::ShellOut::VERSION}")
sh("git push opscode --tags")
Dir[File.expand_path("../pkg/*.gem", __FILE__)].each do |built_gem|
sh("gem push #{built_gem}")
diff --git a/lib/mixlib/shellout/version.rb b/lib/mixlib/shellout/version.rb
index 1834e03..c718c1d 100644
--- a/lib/mixlib/shellout/version.rb
+++ b/lib/mixlib/shellout/version.rb
@@ -1,5 +1,5 @@
module Mixlib
- class Shellout
+ class ShellOut
VERSION = "1.0.0.rc.0"
end
end
diff --git a/mixlib-shellout.gemspec b/mixlib-shellout.gemspec
index bf1517c..a631b92 100644
--- a/mixlib-shellout.gemspec
+++ b/mixlib-shellout.gemspec
@@ -3,7 +3,7 @@ require 'mixlib/shellout/version'
Gem::Specification.new do |s|
s.name = 'mixlib-shellout'
- s.version = Mixlib::Shellout::VERSION
+ s.version = Mixlib::ShellOut::VERSION
s.platform = Gem::Platform::RUBY
s.has_rdoc = true
s.extra_rdoc_files = ["README.md", "LICENSE" ]