Sha256: ba5fa0963a60babed22d3a28472bf3cc48cedf7d6443c7c9224facb6b73bacd7
Contents?: true
Size: 1.25 KB
Versions: 4
Compression:
Stored size: 1.25 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.md", "Rakefile", "Gemfile", "*.gemspec"] spec.executable = "oauth2-server" spec.extra_rdoc_files = "README.md", "CHANGELOG" spec.rdoc_options = "--title", "rack-oauth2-server #{spec.version}", "--main", "README.md", "--webcvs", "http://github.com/assaf/#{spec.name}" spec.license = "MIT" spec.required_ruby_version = '>= 1.8.7' spec.add_dependency "rack", "~>1.1" spec.add_dependency "mongo", "~>1" spec.add_dependency "bson_ext" spec.add_dependency "sinatra", "~>1.1" spec.add_dependency "json" spec.add_dependency "jwt", "~>0.1.4" end
Version data entries
4 entries across 4 versions & 1 rubygems