Bump version to 1.0.0.pr1

This commit is contained in:
Michael Bleigh 2011-10-12 19:26:44 -05:00
parent 5d2c3deb6a
commit 5fe011b19a
2 changed files with 2 additions and 18 deletions

View File

@ -1,19 +1,3 @@
module OmniAuth
module Version
unless defined?(::OmniAuth::Version::MAJOR)
MAJOR = 1
end
unless defined?(::OmniAuth::Version::MINOR)
MINOR = 0
end
unless defined?(::OmniAuth::Version::PATCH)
PATCH = 0
end
unless defined?(::OmniAuth::Version::PRE)
PRE = "alpha"
end
unless defined?(::OmniAuth::Version::STRING)
STRING = [MAJOR, MINOR, PATCH, PRE].compact.join('.')
end
end
VERSION = "1.0.0.pr1"
end

View File

@ -18,7 +18,7 @@ Gem::Specification.new do |gem|
gem.add_development_dependency 'rspec', '~> 2.5'
gem.add_development_dependency 'yard', '~> 0.7'
gem.version = OmniAuth::Version::STRING
gem.version = OmniAuth::VERSION
gem.files = `git ls-files`.split("\n")
gem.homepage = 'http://github.com/intridea/omniauth'
gem.require_paths = ['lib']