oauth2-client.gemspec in oauth2-client-1.0.0 vs oauth2-client.gemspec in oauth2-client-1.1.0
- old
+ new
@@ -1,13 +1,23 @@
-Gem::Specification.new do |s|
- s.name = 'oauth2-client'
- s.version = '1.0.0'
- s.date = %q{2013-01-22}
- s.summary = "OAuth2 Ruby Client"
- s.description = "Create quick and dirty OAuth2 clients for many services. Google OAuth2 client included"
- s.authors = ["Kevin Mutyaba"]
- s.email = %q{tiabasnk@gmail.com}
- s.homepage = ''
- s.rubygems_version = %q{1.0.0}
- s.files = `git ls-files`.split("\n")
- s.require_paths = ['lib']
-end
+lib = File.expand_path('../lib', __FILE__)
+$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
+require 'oauth2/version'
+
+Gem::Specification.new do |spec|
+ spec.add_dependency 'json'
+ spec.add_dependency 'bcrypt-ruby', '~> 3.0.0'
+ spec.add_dependency 'addressable'
+ spec.add_development_dependency 'bundler', '~> 1.0'
+
+ spec.name = 'oauth2-client'
+ spec.version = OAuth2::Version
+ spec.date = %q{2013-03-03}
+ spec.summary = "OAuth2 client wrapper in Ruby"
+ spec.description = "Create quick and dirty OAuth2 clients"
+ spec.authors = ["Kevin Mutyaba"]
+ spec.email = %q{tiabasnk@gmail.com}
+ spec.homepage = 'http://tiabas.github.com/oauth2-client/'
+ spec.files = `git ls-files`.split("\n")
+ spec.require_paths = ['lib']
+ spec.licenses = ['MIT']
+ spec.required_rubygems_version = '>= 1.3.6'
+end
\ No newline at end of file