|
1 |
| -# Generated by jeweler |
2 |
| -# DO NOT EDIT THIS FILE DIRECTLY |
3 |
| -# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command |
4 |
| -# -*- encoding: utf-8 -*- |
5 |
| - |
6 | 1 | Gem::Specification.new do |s|
|
7 |
| - s.name = %q{rack-oauth2} |
8 |
| - s.version = "0.2.1" |
9 |
| - |
10 |
| - s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= |
| 2 | + s.name = "rack-oauth2" |
| 3 | + s.version = File.read("VERSION") |
| 4 | + s.required_rubygems_version = Gem::Requirement.new(">= 1.3.6") if s.respond_to? :required_rubygems_version= |
11 | 5 | s.authors = ["nov matake"]
|
12 |
| - s.date = %q{2010-10-13} |
13 |
| - s.description = %q{Rack Middleware for OAuth2. Currently support only Server/Provider, not Client/Consumer.} |
14 |
| - |
15 |
| - s.extra_rdoc_files = [ |
16 |
| - "LICENSE", |
17 |
| - "README.rdoc" |
18 |
| - ] |
19 |
| - s.files = [ |
20 |
| - ".document", |
21 |
| - ".gitignore", |
22 |
| - "LICENSE", |
23 |
| - "README.rdoc", |
24 |
| - "Rakefile", |
25 |
| - "VERSION", |
26 |
| - "lib/rack/oauth2.rb", |
27 |
| - "lib/rack/oauth2/server.rb", |
28 |
| - "lib/rack/oauth2/server/abstract.rb", |
29 |
| - "lib/rack/oauth2/server/abstract/handler.rb", |
30 |
| - "lib/rack/oauth2/server/abstract/request.rb", |
31 |
| - "lib/rack/oauth2/server/abstract/response.rb", |
32 |
| - "lib/rack/oauth2/server/authorize.rb", |
33 |
| - "lib/rack/oauth2/server/authorize/code.rb", |
34 |
| - "lib/rack/oauth2/server/authorize/code_and_token.rb", |
35 |
| - "lib/rack/oauth2/server/authorize/token.rb", |
36 |
| - "lib/rack/oauth2/server/error.rb", |
37 |
| - "lib/rack/oauth2/server/error/authorize.rb", |
38 |
| - "lib/rack/oauth2/server/error/resource.rb", |
39 |
| - "lib/rack/oauth2/server/error/token.rb", |
40 |
| - "lib/rack/oauth2/server/resource.rb", |
41 |
| - "lib/rack/oauth2/server/token.rb", |
42 |
| - "lib/rack/oauth2/server/token/assertion.rb", |
43 |
| - "lib/rack/oauth2/server/token/authorization_code.rb", |
44 |
| - "lib/rack/oauth2/server/token/password.rb", |
45 |
| - "lib/rack/oauth2/server/token/refresh_token.rb", |
46 |
| - "lib/rack/oauth2/server/util.rb", |
47 |
| - "rack-oauth2.gemspec", |
48 |
| - "spec/rack/oauth2/server/authorize/code_and_token_spec.rb", |
49 |
| - "spec/rack/oauth2/server/authorize/code_spec.rb", |
50 |
| - "spec/rack/oauth2/server/authorize/token_spec.rb", |
51 |
| - "spec/rack/oauth2/server/authorize_spec.rb", |
52 |
| - "spec/rack/oauth2/server/error/authorize_spec.rb", |
53 |
| - "spec/rack/oauth2/server/error/resource_spec.rb", |
54 |
| - "spec/rack/oauth2/server/error/token_spec.rb", |
55 |
| - "spec/rack/oauth2/server/error_spec.rb", |
56 |
| - "spec/rack/oauth2/server/resource_spec.rb", |
57 |
| - "spec/rack/oauth2/server/token/assertion_spec.rb", |
58 |
| - "spec/rack/oauth2/server/token/authorization_code_spec.rb", |
59 |
| - "spec/rack/oauth2/server/token/password_spec.rb", |
60 |
| - "spec/rack/oauth2/server/token/refresh_token_spec.rb", |
61 |
| - "spec/rack/oauth2/server/token_spec.rb", |
62 |
| - "spec/rack/oauth2/server/util_spec.rb", |
63 |
| - "spec/spec.opts", |
64 |
| - "spec/spec_helper.rb" |
65 |
| - ] |
66 |
| - s.homepage = %q{http://github.com/nov/rack-oauth2} |
| 6 | + s.description = %q{Rack Middleware for OAuth2 server} |
| 7 | + s.summary = %q{Rack Middleware for OAuth2 server} |
| 8 | + |
| 9 | + s.extra_rdoc_files = ["LICENSE", "README.rdoc"] |
67 | 10 | s.rdoc_options = ["--charset=UTF-8"]
|
| 11 | + s.homepage = "http://github.com/nov/rack-oauth2" |
68 | 12 | s.require_paths = ["lib"]
|
69 |
| - s.rubygems_version = %q{1.3.7} |
70 |
| - s.summary = %q{Rack Middleware for OAuth2 Server} |
71 |
| - s.test_files = [ |
72 |
| - "spec/rack/oauth2/server/authorize/code_and_token_spec.rb", |
73 |
| - "spec/rack/oauth2/server/authorize/code_spec.rb", |
74 |
| - "spec/rack/oauth2/server/authorize/token_spec.rb", |
75 |
| - "spec/rack/oauth2/server/authorize_spec.rb", |
76 |
| - "spec/rack/oauth2/server/error/authorize_spec.rb", |
77 |
| - "spec/rack/oauth2/server/error/resource_spec.rb", |
78 |
| - "spec/rack/oauth2/server/error/token_spec.rb", |
79 |
| - "spec/rack/oauth2/server/error_spec.rb", |
80 |
| - "spec/rack/oauth2/server/resource_spec.rb", |
81 |
| - "spec/rack/oauth2/server/token/assertion_spec.rb", |
82 |
| - "spec/rack/oauth2/server/token/authorization_code_spec.rb", |
83 |
| - "spec/rack/oauth2/server/token/password_spec.rb", |
84 |
| - "spec/rack/oauth2/server/token/refresh_token_spec.rb", |
85 |
| - "spec/rack/oauth2/server/token_spec.rb", |
86 |
| - "spec/rack/oauth2/server/util_spec.rb", |
87 |
| - "spec/spec_helper.rb" |
88 |
| - ] |
89 |
| - |
90 |
| - if s.respond_to? :specification_version then |
91 |
| - current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION |
92 |
| - s.specification_version = 3 |
93 |
| - |
94 |
| - if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then |
95 |
| - s.add_runtime_dependency(%q<json>, [">= 0"]) |
96 |
| - s.add_runtime_dependency(%q<activesupport>, [">= 0"]) |
97 |
| - s.add_development_dependency(%q<rspec>, [">= 2"]) |
98 |
| - else |
99 |
| - s.add_dependency(%q<json>, [">= 0"]) |
100 |
| - s.add_dependency(%q<activesupport>, [">= 0"]) |
101 |
| - s.add_dependency(%q<rspec>, [">= 2"]) |
102 |
| - end |
103 |
| - else |
104 |
| - s.add_dependency(%q<json>, [">= 0"]) |
105 |
| - s.add_dependency(%q<activesupport>, [">= 0"]) |
106 |
| - s.add_dependency(%q<rspec>, [">= 2"]) |
107 |
| - end |
| 13 | + s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } |
| 14 | + s.files = `git ls-files`.split("\n") |
| 15 | + s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") |
| 16 | + s.add_runtime_dependency "rack", "1.1" |
| 17 | + s.add_runtime_dependency "json", "1.4.3" |
| 18 | + s.add_runtime_dependency "activesupport", ">= 2.3" |
| 19 | + s.add_runtime_dependency "i18n" |
| 20 | + s.add_development_dependency "rake", ">= 0.8" |
| 21 | + s.add_development_dependency "rcov", ">= 0.9" |
| 22 | + s.add_development_dependency "rspec", ">= 2" |
108 | 23 | end
|
109 |
| - |
0 commit comments