mongrel 1.0.4 → 1.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/CHANGELOG +1 -0
- data/ext/http11/http11.c +1 -1
- data/lib/mongrel.rb +1 -1
- data/lib/mongrel/handlers.rb +7 -3
- data/mongrel.gemspec +258 -203
- metadata +23 -56
- metadata.gz.sig +1 -2
data.tar.gz.sig
CHANGED
Binary file
|
data/CHANGELOG
CHANGED
data/ext/http11/http11.c
CHANGED
@@ -571,7 +571,7 @@ void Init_http11()
|
|
571
571
|
DEF_GLOBAL(server_protocol, "SERVER_PROTOCOL");
|
572
572
|
DEF_GLOBAL(server_protocol_value, "HTTP/1.1");
|
573
573
|
DEF_GLOBAL(http_host, "HTTP_HOST");
|
574
|
-
DEF_GLOBAL(mongrel_version, "Mongrel 1.0.
|
574
|
+
DEF_GLOBAL(mongrel_version, "Mongrel 1.0.5");
|
575
575
|
DEF_GLOBAL(server_software, "SERVER_SOFTWARE");
|
576
576
|
DEF_GLOBAL(port_80, "80");
|
577
577
|
|
data/lib/mongrel.rb
CHANGED
data/lib/mongrel/handlers.rb
CHANGED
@@ -132,8 +132,12 @@ module Mongrel
|
|
132
132
|
# Add the drive letter or root path
|
133
133
|
req_path = File.join(@path, req_path) if @path
|
134
134
|
req_path = File.expand_path req_path
|
135
|
-
|
136
|
-
|
135
|
+
|
136
|
+
# do not remove the check for @path at the beginning, it's what prevents
|
137
|
+
# the serving of arbitrary files (and good programmer Rule #1 Says: If
|
138
|
+
# you don't understand something, it's not because I'm stupid, it's
|
139
|
+
# because you are).
|
140
|
+
if req_path.index(@path) == 0 and File.exist? req_path
|
137
141
|
# It exists and it's in the right location
|
138
142
|
if File.directory? req_path
|
139
143
|
# The request is for a directory
|
@@ -153,7 +157,7 @@ module Mongrel
|
|
153
157
|
return req_path
|
154
158
|
end
|
155
159
|
else
|
156
|
-
# does not exist or isn't in the right spot
|
160
|
+
# does not exist or isn't in the right spot or isn't valid because not start with @path
|
157
161
|
return nil
|
158
162
|
end
|
159
163
|
end
|
data/mongrel.gemspec
CHANGED
@@ -1,203 +1,258 @@
|
|
1
|
-
|
2
|
-
# Gem::Specification for Mongrel-1.0.
|
3
|
-
# Originally generated by Echoe
|
4
|
-
|
5
|
-
Gem::Specification.new do |s|
|
6
|
-
s.name = %q{mongrel}
|
7
|
-
s.version = "1.0.
|
8
|
-
|
9
|
-
s.
|
10
|
-
|
11
|
-
s.
|
12
|
-
s.
|
13
|
-
s.
|
14
|
-
s.
|
15
|
-
s.
|
16
|
-
s.
|
17
|
-
s.
|
18
|
-
s.
|
19
|
-
s.
|
20
|
-
s.
|
21
|
-
s.
|
22
|
-
s.
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
40
|
-
#
|
41
|
-
#
|
42
|
-
#
|
43
|
-
#
|
44
|
-
# p.
|
45
|
-
# p.
|
46
|
-
#
|
47
|
-
#
|
48
|
-
#
|
49
|
-
#
|
50
|
-
#
|
51
|
-
#
|
52
|
-
#
|
53
|
-
#
|
54
|
-
#
|
55
|
-
#
|
56
|
-
#
|
57
|
-
#
|
58
|
-
#
|
59
|
-
#
|
60
|
-
#
|
61
|
-
#
|
62
|
-
#
|
63
|
-
#
|
64
|
-
#
|
65
|
-
#
|
66
|
-
#
|
67
|
-
#
|
68
|
-
#
|
69
|
-
#
|
70
|
-
#
|
71
|
-
#
|
72
|
-
#
|
73
|
-
#
|
74
|
-
#
|
75
|
-
#
|
76
|
-
#
|
77
|
-
#
|
78
|
-
#
|
79
|
-
#
|
80
|
-
#
|
81
|
-
#
|
82
|
-
#
|
83
|
-
#
|
84
|
-
#
|
85
|
-
#
|
86
|
-
#
|
87
|
-
#
|
88
|
-
#
|
89
|
-
#
|
90
|
-
#
|
91
|
-
#
|
92
|
-
#
|
93
|
-
#
|
94
|
-
#
|
95
|
-
#
|
96
|
-
#
|
97
|
-
#
|
98
|
-
#
|
99
|
-
#
|
100
|
-
#
|
101
|
-
#
|
102
|
-
#
|
103
|
-
#
|
104
|
-
#
|
105
|
-
#
|
106
|
-
#
|
107
|
-
#
|
108
|
-
#
|
109
|
-
#
|
110
|
-
#
|
111
|
-
#
|
112
|
-
#
|
113
|
-
#
|
114
|
-
#
|
115
|
-
#
|
116
|
-
#
|
117
|
-
#
|
118
|
-
#
|
119
|
-
#
|
120
|
-
#
|
121
|
-
#
|
122
|
-
#
|
123
|
-
#
|
124
|
-
#
|
125
|
-
#
|
126
|
-
#
|
127
|
-
#
|
128
|
-
#
|
129
|
-
#
|
130
|
-
#
|
131
|
-
#
|
132
|
-
#
|
133
|
-
#
|
134
|
-
#
|
135
|
-
#
|
136
|
-
#
|
137
|
-
#
|
138
|
-
#
|
139
|
-
#
|
140
|
-
#
|
141
|
-
#
|
142
|
-
#
|
143
|
-
#
|
144
|
-
# end
|
145
|
-
#
|
146
|
-
#
|
147
|
-
#
|
148
|
-
#
|
149
|
-
#
|
150
|
-
#
|
151
|
-
#
|
152
|
-
#
|
153
|
-
#
|
154
|
-
#
|
155
|
-
#
|
156
|
-
# end
|
157
|
-
#
|
158
|
-
#
|
159
|
-
#
|
160
|
-
#
|
161
|
-
#
|
162
|
-
#
|
163
|
-
#
|
164
|
-
#
|
165
|
-
#
|
166
|
-
#
|
167
|
-
#
|
168
|
-
#
|
169
|
-
#
|
170
|
-
#
|
171
|
-
#
|
172
|
-
#
|
173
|
-
#
|
174
|
-
#
|
175
|
-
#
|
176
|
-
#
|
177
|
-
#
|
178
|
-
#
|
179
|
-
#
|
180
|
-
#
|
181
|
-
#
|
182
|
-
#
|
183
|
-
#
|
184
|
-
#
|
185
|
-
#
|
186
|
-
#
|
187
|
-
#
|
188
|
-
#
|
189
|
-
#
|
190
|
-
#
|
191
|
-
#
|
192
|
-
#
|
193
|
-
#
|
194
|
-
#
|
195
|
-
#
|
196
|
-
#
|
197
|
-
#
|
198
|
-
#
|
199
|
-
#
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
203
|
-
#
|
1
|
+
|
2
|
+
# Gem::Specification for Mongrel-1.0.5
|
3
|
+
# Originally generated by Echoe
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = %q{mongrel}
|
7
|
+
s.version = "1.0.5"
|
8
|
+
s.date = %q{2007-12-29}
|
9
|
+
s.summary = %q{A small fast HTTP library and server that runs Rails, Camping, Nitro and Iowa apps.}
|
10
|
+
s.require_paths = ["lib", "ext"]
|
11
|
+
s.email = %q{}
|
12
|
+
s.homepage = %q{}
|
13
|
+
s.rubyforge_project = %q{mongrel}
|
14
|
+
s.description = %q{A small fast HTTP library and server that runs Rails, Camping, Nitro and Iowa apps.}
|
15
|
+
s.default_executable = %q{mongrel_rails}
|
16
|
+
s.has_rdoc = true
|
17
|
+
s.required_ruby_version = Gem::Version::Requirement.new(">= 1.8.4")
|
18
|
+
s.authors = ["Zed A. Shaw"]
|
19
|
+
s.test_files = ["test/test_cgi_wrapper.rb", "test/test_command.rb", "test/test_conditional.rb", "test/test_configurator.rb", "test/test_debug.rb", "test/test_handlers.rb", "test/test_http11.rb", "test/test_redirect_handler.rb", "test/test_request_progress.rb", "test/test_response.rb", "test/test_stats.rb", "test/test_uriclassifier.rb", "test/test_ws.rb"]
|
20
|
+
s.executables = ["mongrel_rails"]
|
21
|
+
s.extensions = ["ext/http11/extconf.rb"]
|
22
|
+
s.add_dependency(%q<gem_plugin>, [">= 0.2.3"])
|
23
|
+
end
|
24
|
+
|
25
|
+
|
26
|
+
# # Original Rakefile source (requires the Echoe gem):
|
27
|
+
#
|
28
|
+
#
|
29
|
+
# require 'rubygems'
|
30
|
+
# gem 'echoe', '>=2.7.5'
|
31
|
+
# require 'echoe'
|
32
|
+
# FORCE_PURE = ENV['FORCE_PURE'] || false
|
33
|
+
#
|
34
|
+
# e = Echoe.new("mongrel") do |p|
|
35
|
+
# p.summary = "A small fast HTTP library and server that runs Rails, Camping, Nitro and Iowa apps."
|
36
|
+
# p.author ="Zed A. Shaw"
|
37
|
+
# p.clean_pattern = ['ext/http11/*.{bundle,so,o,obj,pdb,lib,def,exp}', 'lib/*.{bundle,so,o,obj,pdb,lib,def,exp}', 'ext/http11/Makefile', 'pkg', 'lib/*.bundle', '*.gem', 'site/output', '.config', 'lib/http11.jar', 'ext/http11_java/classes', 'coverage']
|
38
|
+
# p.rdoc_pattern = ['README', 'LICENSE', 'CHANGELOG', 'COPYING', 'lib/**/*.rb', 'doc/**/*.rdoc']
|
39
|
+
# p.ignore_pattern = /^(pkg|site|projects|doc|log)|CVS|\.log/
|
40
|
+
# p.ruby_version = '>=1.8.4'
|
41
|
+
# p.dependencies = ['gem_plugin >=0.2.3']
|
42
|
+
# p.extension_pattern = nil
|
43
|
+
#
|
44
|
+
# p.need_tar_gz = false
|
45
|
+
# p.need_tgz = true
|
46
|
+
#
|
47
|
+
# case RUBY_PLATFORM
|
48
|
+
# when /mswin/
|
49
|
+
# ]
|
50
|
+
# when /java/
|
51
|
+
# else
|
52
|
+
# p.extension_pattern = ["ext/**/extconf.rb"]
|
53
|
+
# end
|
54
|
+
#
|
55
|
+
# unless FORCE_PURE
|
56
|
+
# p.eval = proc do
|
57
|
+
# case RUBY_PLATFORM
|
58
|
+
# when /mswin/
|
59
|
+
# self.files += ['lib/http11.so']
|
60
|
+
# self.platform = Gem::Platform::CURRENT
|
61
|
+
# add_dependency('cgi_multipart_eof_fix', '>= 2.4')
|
62
|
+
# when /java/
|
63
|
+
# self.files += ['lib/http11.jar']
|
64
|
+
# self.platform = 'jruby'
|
65
|
+
# else
|
66
|
+
# add_dependency('daemons', '>= 1.0.3')
|
67
|
+
# add_dependency('fastthread', '>= 1.0.1')
|
68
|
+
# add_dependency('cgi_multipart_eof_fix', '>= 2.4')
|
69
|
+
# end
|
70
|
+
# end
|
71
|
+
# else
|
72
|
+
# p.extension_pattern = ["ext/**/extconf.rb"]
|
73
|
+
# end
|
74
|
+
# end
|
75
|
+
#
|
76
|
+
# #### Ragel builder
|
77
|
+
#
|
78
|
+
# desc "Rebuild the Ragel sources"
|
79
|
+
# task :ragel do
|
80
|
+
# Dir.chdir "ext/http11" do
|
81
|
+
# target = "http11_parser.c"
|
82
|
+
# File.unlink target if File.exist? target
|
83
|
+
# sh "ragel http11_parser.rl | rlgen-cd -G2 -o #{target}"
|
84
|
+
# raise "Failed to build C source" unless File.exist? target
|
85
|
+
# end
|
86
|
+
# Dir.chdir "ext/http11" do
|
87
|
+
# target = "../../ext/http11_java/org/jruby/mongrel/Http11Parser.java"
|
88
|
+
# File.unlink target if File.exist? target
|
89
|
+
# sh "ragel -J http11_parser.java.rl | rlgen-java -o #{target}"
|
90
|
+
# raise "Failed to build Java source" unless File.exist? target
|
91
|
+
# end
|
92
|
+
# end
|
93
|
+
#
|
94
|
+
# #### Pre-compiled extensions for alternative platforms
|
95
|
+
#
|
96
|
+
# def move_extensions
|
97
|
+
# Dir["ext/**/*.#{Config::CONFIG['DLEXT']}"].each { |file| mv file, "lib/" }
|
98
|
+
# end
|
99
|
+
#
|
100
|
+
# def java_classpath_arg
|
101
|
+
# # A myriad of ways to discover the JRuby classpath
|
102
|
+
# classpath = begin
|
103
|
+
# require 'java'
|
104
|
+
# # Already running in a JRuby JVM
|
105
|
+
# Java::java.lang.System.getProperty('java.class.path')
|
106
|
+
# rescue LoadError
|
107
|
+
# ENV['JRUBY_PARENT_CLASSPATH'] || ENV['JRUBY_HOME'] && FileList["#{ENV['JRUBY_HOME']}/lib/*.jar"].join(File::PATH_SEPARATOR)
|
108
|
+
# end
|
109
|
+
# classpath ? "-cp #{classpath}" : ""
|
110
|
+
# end
|
111
|
+
#
|
112
|
+
# case RUBY_PLATFORM
|
113
|
+
# when /mswin/
|
114
|
+
# filename = "lib/http11.so"
|
115
|
+
# file filename do
|
116
|
+
# Dir.chdir("ext/http11") do
|
117
|
+
# ruby "extconf.rb"
|
118
|
+
# system(PLATFORM =~ /mswin/ ? 'nmake' : 'make')
|
119
|
+
# end
|
120
|
+
# move_extensions
|
121
|
+
# end
|
122
|
+
# task :compile => [filename]
|
123
|
+
#
|
124
|
+
# when /java/
|
125
|
+
#
|
126
|
+
# # Avoid JRuby in-process launching problem
|
127
|
+
# begin
|
128
|
+
# require 'jruby'
|
129
|
+
# JRuby.runtime.instance_config.run_ruby_in_process = false
|
130
|
+
# rescue LoadError
|
131
|
+
# end
|
132
|
+
#
|
133
|
+
# filename = "lib/http11.jar"
|
134
|
+
# file filename do
|
135
|
+
# build_dir = "ext/http11_java/classes"
|
136
|
+
# mkdir_p build_dir
|
137
|
+
# sources = FileList['ext/http11_java/**/*.java'].join(' ')
|
138
|
+
# sh "javac -target 1.4 -source 1.4 -d #{build_dir} #{java_classpath_arg} #{sources}"
|
139
|
+
# sh "jar cf lib/http11.jar -C #{build_dir} ."
|
140
|
+
# move_extensions
|
141
|
+
# end
|
142
|
+
# task :compile => [filename]
|
143
|
+
#
|
144
|
+
# end
|
145
|
+
#
|
146
|
+
# #### Project-wide install and uninstall tasks
|
147
|
+
#
|
148
|
+
# def sub_project(project, *targets)
|
149
|
+
# targets.each do |target|
|
150
|
+
# Dir.chdir "projects/#{project}" do
|
151
|
+
# unless RUBY_PLATFORM =~ /mswin/
|
152
|
+
# sh("rake #{target.to_s}") # --trace
|
153
|
+
# end
|
154
|
+
# end
|
155
|
+
# end
|
156
|
+
# end
|
157
|
+
#
|
158
|
+
# desc "Package Mongrel and all subprojects"
|
159
|
+
# task :package_all => [:package] do
|
160
|
+
# sub_project("gem_plugin", :package)
|
161
|
+
# sub_project("cgi_multipart_eof_fix", :package)
|
162
|
+
# sub_project("fastthread", :package)
|
163
|
+
# sub_project("mongrel_status", :package)
|
164
|
+
# sub_project("mongrel_upload_progress", :package)
|
165
|
+
# sub_project("mongrel_console", :package)
|
166
|
+
# sub_project("mongrel_cluster", :package)
|
167
|
+
#
|
168
|
+
# sh("rake java package") unless RUBY_PLATFORM =~ /java/
|
169
|
+
#
|
170
|
+
# # XXX Broken by RubyGems 0.9.5
|
171
|
+
# # sub_project("mongrel_service", :package) if RUBY_PLATFORM =~ /mswin/
|
172
|
+
# # sh("rake mswin package") unless RUBY_PLATFORM =~ /mswin/
|
173
|
+
# end
|
174
|
+
#
|
175
|
+
# task :install_requirements do
|
176
|
+
# # These run before Mongrel is installed
|
177
|
+
# sub_project("gem_plugin", :install)
|
178
|
+
# sub_project("cgi_multipart_eof_fix", :install)
|
179
|
+
# sub_project("fastthread", :install)
|
180
|
+
# end
|
181
|
+
#
|
182
|
+
# desc "for Mongrel and all subprojects"
|
183
|
+
# task :install => [:install_requirements] do
|
184
|
+
# # These run after Mongrel is installed
|
185
|
+
# sub_project("mongrel_status", :install)
|
186
|
+
# sub_project("mongrel_upload_progress", :install)
|
187
|
+
# sub_project("mongrel_console", :install)
|
188
|
+
# sub_project("mongrel_cluster", :install)
|
189
|
+
# sub_project("mongrel_service", :install) if RUBY_PLATFORM =~ /mswin/
|
190
|
+
# end
|
191
|
+
#
|
192
|
+
# desc "for Mongrel and all its subprojects"
|
193
|
+
# task :uninstall => [:clean] do
|
194
|
+
# sub_project("mongrel_status", :uninstall)
|
195
|
+
# sub_project("cgi_multipart_eof_fix", :uninstall)
|
196
|
+
# sub_project("mongrel_upload_progress", :uninstall)
|
197
|
+
# sub_project("mongrel_console", :uninstall)
|
198
|
+
# sub_project("gem_plugin", :uninstall)
|
199
|
+
# sub_project("fastthread", :uninstall)
|
200
|
+
# sub_project("mongrel_service", :uninstall) if RUBY_PLATFORM =~ /mswin/
|
201
|
+
# end
|
202
|
+
#
|
203
|
+
# desc "for Mongrel and all its subprojects"
|
204
|
+
# task :clean do
|
205
|
+
# sub_project("gem_plugin", :clean)
|
206
|
+
# sub_project("cgi_multipart_eof_fix", :clean)
|
207
|
+
# sub_project("fastthread", :clean)
|
208
|
+
# sub_project("mongrel_status", :clean)
|
209
|
+
# sub_project("mongrel_upload_progress", :clean)
|
210
|
+
# sub_project("mongrel_console", :clean)
|
211
|
+
# sub_project("mongrel_cluster", :clean)
|
212
|
+
# sub_project("mongrel_service", :clean) if RUBY_PLATFORM =~ /mswin/
|
213
|
+
# end
|
214
|
+
#
|
215
|
+
# #### Site upload tasks
|
216
|
+
#
|
217
|
+
# namespace :site do
|
218
|
+
#
|
219
|
+
# desc "Package and upload .gem files and .tgz files for Mongrel and all subprojects to http://mongrel.rubyforge.org/releases/"
|
220
|
+
# task :source => [:package_all] do
|
221
|
+
# rm_rf "pkg/gems"
|
222
|
+
# rm_rf "pkg/tars"
|
223
|
+
# mkdir_p "pkg/gems"
|
224
|
+
# mkdir_p "pkg/tars"
|
225
|
+
#
|
226
|
+
# FileList["**/*.gem"].each { |gem| mv gem, "pkg/gems" }
|
227
|
+
# FileList["**/*.tgz"].each {|tgz| mv tgz, "pkg/tars" }
|
228
|
+
#
|
229
|
+
# sh "rm -rf pkg/mongrel*"
|
230
|
+
# sh "gem generate_index -d pkg"
|
231
|
+
# sh "scp -r CHANGELOG pkg/* rubyforge.org:/var/www/gforge-projects/mongrel/releases/"
|
232
|
+
# sh "svn log -v > SVN_LOG"
|
233
|
+
# sh "scp -r SVN_LOG pkg/* rubyforge.org:/var/www/gforge-projects/mongrel/releases/"
|
234
|
+
# rm "SVN_LOG"
|
235
|
+
# end
|
236
|
+
#
|
237
|
+
# desc "Upload the website"
|
238
|
+
# task :web do
|
239
|
+
# # Requires the 'webgem' gem
|
240
|
+
# sh "cd site; webgen; webgen; curl 'http://feed43.com/mongrel.xml' > output/rss.xml; rsync -azv --no-perms --no-times output/* rubyforge.org:/var/www/gforge-projects/mongrel/"
|
241
|
+
# puts "\nMake sure to re-run the site update 6 hours later if you updated the news. This delay is required for Feed43 to pick up the site changes."
|
242
|
+
# end
|
243
|
+
#
|
244
|
+
# desc "Upload the rdocs"
|
245
|
+
# task :rdoc => [:doc] do
|
246
|
+
# sh "rsync -azv --no-perms --no-times doc/* rubyforge.org:/var/www/gforge-projects/mongrel/rdoc/"
|
247
|
+
# sh "cd projects/gem_plugin; rake site:rdoc"
|
248
|
+
# end
|
249
|
+
#
|
250
|
+
# desc "Upload the coverage report"
|
251
|
+
# task :coverage => [:rcov] do
|
252
|
+
# sh "rsync -azv --no-perms --no-times test/coverage/* rubyforge.org:/var/www/gforge-projects/mongrel/coverage/" rescue nil
|
253
|
+
# end
|
254
|
+
#
|
255
|
+
# desc "Upload the website, the rdocs, and the coverage report"
|
256
|
+
# task :all => [:clean, :web, :rdoc, :coverage]
|
257
|
+
#
|
258
|
+
# end
|
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.9.4
|
3
|
-
specification_version:
|
2
|
+
rubygems_version: 0.9.4
|
3
|
+
specification_version: 1
|
4
4
|
name: mongrel
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 1.0.
|
7
|
-
date: 2007-
|
6
|
+
version: 1.0.5
|
7
|
+
date: 2007-12-29 00:00:00 -03:00
|
8
8
|
summary: A small fast HTTP library and server that runs Rails, Camping, Nitro and Iowa apps.
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -17,18 +17,12 @@ autorequire:
|
|
17
17
|
default_executable:
|
18
18
|
bindir: bin
|
19
19
|
has_rdoc: true
|
20
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
20
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
21
21
|
requirements:
|
22
22
|
- - ">="
|
23
23
|
- !ruby/object:Gem::Version
|
24
24
|
version: 1.8.4
|
25
25
|
version:
|
26
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
27
|
-
requirements:
|
28
|
-
- - ">="
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
version: "0"
|
31
|
-
version:
|
32
26
|
platform: ruby
|
33
27
|
signing_key:
|
34
28
|
cert_chain:
|
@@ -56,24 +50,24 @@ cert_chain:
|
|
56
50
|
|
57
51
|
- |
|
58
52
|
-----BEGIN CERTIFICATE-----
|
59
|
-
|
53
|
+
MIIDQzCCAiugAwIBAgIBADANBgkqhkiG9w0BAQUFADBOMRwwGgYDVQQDDBNtb25n
|
60
54
|
cmVsLWRldmVsb3BtZW50MRkwFwYKCZImiZPyLGQBGRYJcnVieWZvcmdlMRMwEQYK
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
55
|
+
CZImiZPyLGQBGRYDb3JnMB4XDTA3MDkyNDAyMzAzOVoXDTA4MDkyMzAyMzAzOVow
|
56
|
+
QTETMBEGA1UEAwwKbHVpc2xhdmVuYTEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMw
|
57
|
+
EQYKCZImiZPyLGQBGRYDY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC
|
58
|
+
AQEA5gIWDL7FYk43BEM3guuNz1vrr2RW7UAh+KY8w2+cGxt+MNi3P+rrfx/LAr7d
|
59
|
+
KKV+RT7PQgutb9MZhk8ghn0qgTpCxWbvlhnFrMqIDaJy9nXGEWt6M0fTWdEojrzF
|
60
|
+
dLSO//3GYzZze/ykE20KeNZ8SXzbxPwmIwrKfvoGYshGdmU7RAwiV6vV9ZS4uB1I
|
61
|
+
/pvzsWp3cSqZwxJvtb7P445jcDMPqFXjMFVAXd6KpfVNl4ZNBzYHc0Ii2uLu3Pv4
|
62
|
+
jOmwvJlYZ30ccBh0G86ngtlOpZNrdcnXgRKXADGnxPickYZMdIHPPykIeR6Im0sR
|
63
|
+
hCq6hsHkuWQU6CuwqTtGErw6uwIDAQABozkwNzAJBgNVHRMEAjAAMAsGA1UdDwQE
|
64
|
+
AwIEsDAdBgNVHQ4EFgQUkz5QYICmPVaUs8rhPOQmhrDosCUwDQYJKoZIhvcNAQEF
|
65
|
+
BQADggEBAMVgi+dtUNn1WNgsrkDi8wPkBbTj4qvTdu/mLncUD/wSNEfaf0ADiycu
|
66
|
+
W9x8imY3UmSyyc2HO+/Wnf6/PkbaoAcUZxl/7a60UDqSyTpdpfB3moA7z9+j+Kyp
|
67
|
+
nVFr7JVQG3SSNC/y0XrYf6J0DCgpLwOqLSes/KaQOtJlXl/xV37AHXEnAPjwJyCD
|
68
|
+
qafzGwoObqIf7Vj8IzU/eoCx/SxAYnaevry1bls58eb28FKGuq7bWyJuDrFu1H8m
|
69
|
+
mPG0Kv6rJ8vKyQiYZMAKm+XpuDZ09rnGm3ytdeEpXDfF5osSDDBSlWox82z2ulMd
|
70
|
+
knPjAuGZt50yNl1teBnVEZkty2RINfo=
|
77
71
|
-----END CERTIFICATE-----
|
78
72
|
|
79
73
|
post_install_message:
|
@@ -177,36 +171,9 @@ dependencies:
|
|
177
171
|
- !ruby/object:Gem::Dependency
|
178
172
|
name: gem_plugin
|
179
173
|
version_requirement:
|
180
|
-
version_requirements: !ruby/object:Gem::Requirement
|
174
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
181
175
|
requirements:
|
182
176
|
- - ">="
|
183
177
|
- !ruby/object:Gem::Version
|
184
178
|
version: 0.2.3
|
185
179
|
version:
|
186
|
-
- !ruby/object:Gem::Dependency
|
187
|
-
name: cgi_multipart_eof_fix
|
188
|
-
version_requirement:
|
189
|
-
version_requirements: !ruby/object:Gem::Requirement
|
190
|
-
requirements:
|
191
|
-
- - ">="
|
192
|
-
- !ruby/object:Gem::Version
|
193
|
-
version: "2.4"
|
194
|
-
version:
|
195
|
-
- !ruby/object:Gem::Dependency
|
196
|
-
name: daemons
|
197
|
-
version_requirement:
|
198
|
-
version_requirements: !ruby/object:Gem::Requirement
|
199
|
-
requirements:
|
200
|
-
- - ">="
|
201
|
-
- !ruby/object:Gem::Version
|
202
|
-
version: 1.0.3
|
203
|
-
version:
|
204
|
-
- !ruby/object:Gem::Dependency
|
205
|
-
name: fastthread
|
206
|
-
version_requirement:
|
207
|
-
version_requirements: !ruby/object:Gem::Requirement
|
208
|
-
requirements:
|
209
|
-
- - ">="
|
210
|
-
- !ruby/object:Gem::Version
|
211
|
-
version: 1.0.1
|
212
|
-
version:
|
metadata.gz.sig
CHANGED
@@ -1,2 +1 @@
|
|
1
|
-
|
2
|
-
�K@������\̖�K���,x�U����t�&������$��h�u���1m:���$̾XA����
|
1
|
+
�p��=����4��A���&e�RE�}#k������b�9���s�9w��D3���UT���Z�Gv�ѩ
|