rack-oauth2-server.gemspec in rack-oauth2-server-1.2.2 vs rack-oauth2-server.gemspec in rack-oauth2-server-1.3.0
- old
+ new
@@ -1,18 +1,17 @@
$: << File.dirname(__FILE__) + "/lib"
-require "rack/oauth2/server/version"
Gem::Specification.new do |spec|
spec.name = "rack-oauth2-server"
- spec.version = Rack::OAuth2::Server::VERSION
+ spec.version = IO.read("VERSION")
spec.author = "Assaf Arkin"
spec.email = "assaf@labnotes.org"
spec.homepage = "http://github.com/assaf/#{spec.name}"
spec.summary = "OAuth 2.0 Authorization Server as a Rack module"
spec.description = "Because you don't allow strangers into your app, and OAuth 2.0 is the new awesome."
spec.post_install_message = ""
- spec.files = Dir["{bin,lib,rails,test}/**/*", "CHANGELOG", "MIT-LICENSE", "README.rdoc", "Rakefile", "Gemfile", "*.gemspec"]
+ spec.files = Dir["{bin,lib,rails,test}/**/*", "CHANGELOG", "VERSION", "MIT-LICENSE", "README.rdoc", "Rakefile", "Gemfile", "*.gemspec"]
spec.has_rdoc = true
spec.extra_rdoc_files = "README.rdoc", "CHANGELOG"
spec.rdoc_options = "--title", "rack-oauth2-server #{spec.version}", "--main", "README.rdoc",
"--webcvs", "http://github.com/assaf/#{spec.name}"