summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 17b0501f86..87a69ac9e4 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 1834e038a0..c718c1df22 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 bf1517cce5..a631b92e1e 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" ]