Sha256: c8b48249d754509b0319100887d9ca497225153d7c834d43020c103305a4c96a

Contents?: true

Size: 1.19 KB

Versions: 5

Compression:

Stored size: 1.19 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/flowtown/#{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.executable     = "oauth2-server"

  spec.extra_rdoc_files = "README.rdoc", "CHANGELOG"
  spec.rdoc_options     = "--title", "rack-oauth2-server #{spec.version}", "--main", "README.rdoc",
                          "--webcvs", "http://github.com/flowtown/#{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"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rack-oauth2-server-2.4.1 rack-oauth2-server.gemspec
rack-oauth2-server-2.4.0 rack-oauth2-server.gemspec
rack-oauth2-server-2.3.0 rack-oauth2-server.gemspec
rack-oauth2-server-2.2.2 rack-oauth2-server.gemspec
rack-oauth2-server-2.2.1 rack-oauth2-server.gemspec