forked from demandforce/rack-oauth2-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rack-oauth2-server.gemspec
26 lines (22 loc) · 1.19 KB
/
rack-oauth2-server.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
$: << 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