Sha256: 0761a78224d59f5bc1bf5566dd32097c367867dc91dd20119d82c19006eafc51
Contents?: true
Size: 1.1 KB
Versions: 1
Compression:
Stored size: 1.1 KB
Contents
$: << File.dirname(__FILE__) + "/lib" Gem::Specification.new do |spec| spec.name = "rack-oauth2-server" 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 = "To get started, run the command oauth2-server" 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}" spec.required_ruby_version = '>= 1.8.7' spec.add_dependency "rack", "~>1" spec.add_dependency "mongo", "~>1" spec.add_dependency "bson_ext" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rack-oauth2-server-1.3.1 | rack-oauth2-server.gemspec |