giraffesoft-unicorn 0.93.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (141) hide show
  1. data/.CHANGELOG.old +25 -0
  2. data/.document +16 -0
  3. data/.gitignore +20 -0
  4. data/.mailmap +26 -0
  5. data/CONTRIBUTORS +31 -0
  6. data/COPYING +339 -0
  7. data/DESIGN +105 -0
  8. data/Documentation/.gitignore +5 -0
  9. data/Documentation/GNUmakefile +30 -0
  10. data/Documentation/unicorn.1.txt +167 -0
  11. data/Documentation/unicorn_rails.1.txt +169 -0
  12. data/GIT-VERSION-GEN +40 -0
  13. data/GNUmakefile +270 -0
  14. data/HACKING +113 -0
  15. data/KNOWN_ISSUES +40 -0
  16. data/LICENSE +55 -0
  17. data/PHILOSOPHY +144 -0
  18. data/README +153 -0
  19. data/Rakefile +108 -0
  20. data/SIGNALS +97 -0
  21. data/TODO +16 -0
  22. data/TUNING +70 -0
  23. data/bin/unicorn +165 -0
  24. data/bin/unicorn_rails +208 -0
  25. data/examples/echo.ru +27 -0
  26. data/examples/git.ru +13 -0
  27. data/examples/init.sh +53 -0
  28. data/ext/unicorn_http/c_util.h +107 -0
  29. data/ext/unicorn_http/common_field_optimization.h +111 -0
  30. data/ext/unicorn_http/ext_help.h +73 -0
  31. data/ext/unicorn_http/extconf.rb +14 -0
  32. data/ext/unicorn_http/global_variables.h +91 -0
  33. data/ext/unicorn_http/unicorn_http.rl +715 -0
  34. data/ext/unicorn_http/unicorn_http_common.rl +74 -0
  35. data/lib/unicorn.rb +730 -0
  36. data/lib/unicorn/app/exec_cgi.rb +150 -0
  37. data/lib/unicorn/app/inetd.rb +109 -0
  38. data/lib/unicorn/app/old_rails.rb +31 -0
  39. data/lib/unicorn/app/old_rails/static.rb +60 -0
  40. data/lib/unicorn/cgi_wrapper.rb +145 -0
  41. data/lib/unicorn/configurator.rb +403 -0
  42. data/lib/unicorn/const.rb +37 -0
  43. data/lib/unicorn/http_request.rb +74 -0
  44. data/lib/unicorn/http_response.rb +74 -0
  45. data/lib/unicorn/launcher.rb +39 -0
  46. data/lib/unicorn/socket_helper.rb +138 -0
  47. data/lib/unicorn/tee_input.rb +174 -0
  48. data/lib/unicorn/util.rb +64 -0
  49. data/local.mk.sample +53 -0
  50. data/setup.rb +1586 -0
  51. data/test/aggregate.rb +15 -0
  52. data/test/benchmark/README +50 -0
  53. data/test/benchmark/dd.ru +18 -0
  54. data/test/exec/README +5 -0
  55. data/test/exec/test_exec.rb +855 -0
  56. data/test/rails/app-1.2.3/.gitignore +2 -0
  57. data/test/rails/app-1.2.3/Rakefile +7 -0
  58. data/test/rails/app-1.2.3/app/controllers/application.rb +6 -0
  59. data/test/rails/app-1.2.3/app/controllers/foo_controller.rb +36 -0
  60. data/test/rails/app-1.2.3/app/helpers/application_helper.rb +4 -0
  61. data/test/rails/app-1.2.3/config/boot.rb +11 -0
  62. data/test/rails/app-1.2.3/config/database.yml +12 -0
  63. data/test/rails/app-1.2.3/config/environment.rb +13 -0
  64. data/test/rails/app-1.2.3/config/environments/development.rb +9 -0
  65. data/test/rails/app-1.2.3/config/environments/production.rb +5 -0
  66. data/test/rails/app-1.2.3/config/routes.rb +6 -0
  67. data/test/rails/app-1.2.3/db/.gitignore +0 -0
  68. data/test/rails/app-1.2.3/public/404.html +1 -0
  69. data/test/rails/app-1.2.3/public/500.html +1 -0
  70. data/test/rails/app-2.0.2/.gitignore +2 -0
  71. data/test/rails/app-2.0.2/Rakefile +7 -0
  72. data/test/rails/app-2.0.2/app/controllers/application.rb +4 -0
  73. data/test/rails/app-2.0.2/app/controllers/foo_controller.rb +36 -0
  74. data/test/rails/app-2.0.2/app/helpers/application_helper.rb +4 -0
  75. data/test/rails/app-2.0.2/config/boot.rb +11 -0
  76. data/test/rails/app-2.0.2/config/database.yml +12 -0
  77. data/test/rails/app-2.0.2/config/environment.rb +17 -0
  78. data/test/rails/app-2.0.2/config/environments/development.rb +8 -0
  79. data/test/rails/app-2.0.2/config/environments/production.rb +5 -0
  80. data/test/rails/app-2.0.2/config/routes.rb +6 -0
  81. data/test/rails/app-2.0.2/db/.gitignore +0 -0
  82. data/test/rails/app-2.0.2/public/404.html +1 -0
  83. data/test/rails/app-2.0.2/public/500.html +1 -0
  84. data/test/rails/app-2.1.2/.gitignore +2 -0
  85. data/test/rails/app-2.1.2/Rakefile +7 -0
  86. data/test/rails/app-2.1.2/app/controllers/application.rb +4 -0
  87. data/test/rails/app-2.1.2/app/controllers/foo_controller.rb +36 -0
  88. data/test/rails/app-2.1.2/app/helpers/application_helper.rb +4 -0
  89. data/test/rails/app-2.1.2/config/boot.rb +111 -0
  90. data/test/rails/app-2.1.2/config/database.yml +12 -0
  91. data/test/rails/app-2.1.2/config/environment.rb +17 -0
  92. data/test/rails/app-2.1.2/config/environments/development.rb +7 -0
  93. data/test/rails/app-2.1.2/config/environments/production.rb +5 -0
  94. data/test/rails/app-2.1.2/config/routes.rb +6 -0
  95. data/test/rails/app-2.1.2/db/.gitignore +0 -0
  96. data/test/rails/app-2.1.2/public/404.html +1 -0
  97. data/test/rails/app-2.1.2/public/500.html +1 -0
  98. data/test/rails/app-2.2.2/.gitignore +2 -0
  99. data/test/rails/app-2.2.2/Rakefile +7 -0
  100. data/test/rails/app-2.2.2/app/controllers/application.rb +4 -0
  101. data/test/rails/app-2.2.2/app/controllers/foo_controller.rb +36 -0
  102. data/test/rails/app-2.2.2/app/helpers/application_helper.rb +4 -0
  103. data/test/rails/app-2.2.2/config/boot.rb +111 -0
  104. data/test/rails/app-2.2.2/config/database.yml +12 -0
  105. data/test/rails/app-2.2.2/config/environment.rb +17 -0
  106. data/test/rails/app-2.2.2/config/environments/development.rb +7 -0
  107. data/test/rails/app-2.2.2/config/environments/production.rb +5 -0
  108. data/test/rails/app-2.2.2/config/routes.rb +6 -0
  109. data/test/rails/app-2.2.2/db/.gitignore +0 -0
  110. data/test/rails/app-2.2.2/public/404.html +1 -0
  111. data/test/rails/app-2.2.2/public/500.html +1 -0
  112. data/test/rails/app-2.3.3.1/.gitignore +2 -0
  113. data/test/rails/app-2.3.3.1/Rakefile +7 -0
  114. data/test/rails/app-2.3.3.1/app/controllers/application_controller.rb +5 -0
  115. data/test/rails/app-2.3.3.1/app/controllers/foo_controller.rb +36 -0
  116. data/test/rails/app-2.3.3.1/app/helpers/application_helper.rb +4 -0
  117. data/test/rails/app-2.3.3.1/config/boot.rb +109 -0
  118. data/test/rails/app-2.3.3.1/config/database.yml +12 -0
  119. data/test/rails/app-2.3.3.1/config/environment.rb +17 -0
  120. data/test/rails/app-2.3.3.1/config/environments/development.rb +7 -0
  121. data/test/rails/app-2.3.3.1/config/environments/production.rb +6 -0
  122. data/test/rails/app-2.3.3.1/config/routes.rb +6 -0
  123. data/test/rails/app-2.3.3.1/db/.gitignore +0 -0
  124. data/test/rails/app-2.3.3.1/public/404.html +1 -0
  125. data/test/rails/app-2.3.3.1/public/500.html +1 -0
  126. data/test/rails/app-2.3.3.1/public/x.txt +1 -0
  127. data/test/rails/test_rails.rb +280 -0
  128. data/test/test_helper.rb +296 -0
  129. data/test/unit/test_configurator.rb +150 -0
  130. data/test/unit/test_http_parser.rb +492 -0
  131. data/test/unit/test_http_parser_ng.rb +308 -0
  132. data/test/unit/test_request.rb +184 -0
  133. data/test/unit/test_response.rb +110 -0
  134. data/test/unit/test_server.rb +188 -0
  135. data/test/unit/test_signals.rb +202 -0
  136. data/test/unit/test_socket_helper.rb +133 -0
  137. data/test/unit/test_tee_input.rb +229 -0
  138. data/test/unit/test_upload.rb +297 -0
  139. data/test/unit/test_util.rb +96 -0
  140. data/unicorn.gemspec +42 -0
  141. metadata +228 -0
@@ -0,0 +1,96 @@
1
+ # -*- encoding: binary -*-
2
+
3
+ require 'test/test_helper'
4
+ require 'tempfile'
5
+
6
+ class TestUtil < Test::Unit::TestCase
7
+
8
+ EXPECT_FLAGS = File::WRONLY | File::APPEND
9
+ def test_reopen_logs_noop
10
+ tmp = Tempfile.new(nil)
11
+ tmp.reopen(tmp.path, 'a')
12
+ tmp.sync = true
13
+ ext = tmp.external_encoding rescue nil
14
+ int = tmp.internal_encoding rescue nil
15
+ before = tmp.stat.inspect
16
+ Unicorn::Util.reopen_logs
17
+ assert_equal before, File.stat(tmp.path).inspect
18
+ assert_equal ext, (tmp.external_encoding rescue nil)
19
+ assert_equal int, (tmp.internal_encoding rescue nil)
20
+ assert_nothing_raised { tmp.close! }
21
+ end
22
+
23
+ def test_reopen_logs_renamed
24
+ tmp = Tempfile.new(nil)
25
+ tmp_path = tmp.path.freeze
26
+ tmp.reopen(tmp_path, 'a')
27
+ tmp.sync = true
28
+ ext = tmp.external_encoding rescue nil
29
+ int = tmp.internal_encoding rescue nil
30
+ before = tmp.stat.inspect
31
+ to = Tempfile.new(nil)
32
+ File.rename(tmp_path, to.path)
33
+ assert ! File.exist?(tmp_path)
34
+ Unicorn::Util.reopen_logs
35
+ assert_equal tmp_path, tmp.path
36
+ assert File.exist?(tmp_path)
37
+ assert before != File.stat(tmp_path).inspect
38
+ assert_equal tmp.stat.inspect, File.stat(tmp_path).inspect
39
+ assert_equal ext, (tmp.external_encoding rescue nil)
40
+ assert_equal int, (tmp.internal_encoding rescue nil)
41
+ assert_equal(EXPECT_FLAGS, EXPECT_FLAGS & tmp.fcntl(Fcntl::F_GETFL))
42
+ assert tmp.sync
43
+ assert_nothing_raised { tmp.close! }
44
+ assert_nothing_raised { to.close! }
45
+ end
46
+
47
+ def test_reopen_logs_renamed_with_encoding
48
+ tmp = Tempfile.new(nil)
49
+ tmp_path = tmp.path.dup.freeze
50
+ Encoding.list.each { |encoding|
51
+ File.open(tmp_path, "a:#{encoding.to_s}") { |fp|
52
+ fp.sync = true
53
+ assert_equal encoding, fp.external_encoding
54
+ assert_nil fp.internal_encoding
55
+ File.unlink(tmp_path)
56
+ assert ! File.exist?(tmp_path)
57
+ Unicorn::Util.reopen_logs
58
+ assert_equal tmp_path, fp.path
59
+ assert File.exist?(tmp_path)
60
+ assert_equal fp.stat.inspect, File.stat(tmp_path).inspect
61
+ assert_equal encoding, fp.external_encoding
62
+ assert_nil fp.internal_encoding
63
+ assert_equal(EXPECT_FLAGS, EXPECT_FLAGS & fp.fcntl(Fcntl::F_GETFL))
64
+ assert fp.sync
65
+ }
66
+ }
67
+ assert_nothing_raised { tmp.close! }
68
+ end if STDIN.respond_to?(:external_encoding)
69
+
70
+ def test_reopen_logs_renamed_with_internal_encoding
71
+ tmp = Tempfile.new(nil)
72
+ tmp_path = tmp.path.dup.freeze
73
+ Encoding.list.each { |ext|
74
+ Encoding.list.each { |int|
75
+ next if ext == int
76
+ File.open(tmp_path, "a:#{ext.to_s}:#{int.to_s}") { |fp|
77
+ fp.sync = true
78
+ assert_equal ext, fp.external_encoding
79
+ assert_equal int, fp.internal_encoding
80
+ File.unlink(tmp_path)
81
+ assert ! File.exist?(tmp_path)
82
+ Unicorn::Util.reopen_logs
83
+ assert_equal tmp_path, fp.path
84
+ assert File.exist?(tmp_path)
85
+ assert_equal fp.stat.inspect, File.stat(tmp_path).inspect
86
+ assert_equal ext, fp.external_encoding
87
+ assert_equal int, fp.internal_encoding
88
+ assert_equal(EXPECT_FLAGS, EXPECT_FLAGS & fp.fcntl(Fcntl::F_GETFL))
89
+ assert fp.sync
90
+ }
91
+ }
92
+ }
93
+ assert_nothing_raised { tmp.close! }
94
+ end if STDIN.respond_to?(:external_encoding)
95
+
96
+ end
data/unicorn.gemspec ADDED
@@ -0,0 +1,42 @@
1
+ # -*- encoding: binary -*-
2
+
3
+ ENV["VERSION"] or abort "VERSION= must be specified"
4
+ manifest = File.readlines('.manifest').map! { |x| x.chomp! }.reject { |f| f =~ /^man\// }
5
+
6
+ # don't bother with tests that fork, not worth our time to get working
7
+ # with `gem check -t` ... (of course we care for them when testing with
8
+ # GNU make when they can run in parallel)
9
+ test_files = manifest.grep(%r{\Atest/unit/test_.*\.rb\z}).map do |f|
10
+ File.readlines(f).grep(/\bfork\b/).empty? ? f : nil
11
+ end.compact
12
+
13
+ Gem::Specification.new do |s|
14
+ s.name = %q{giraffesoft-unicorn}
15
+ s.version = ENV["VERSION"]
16
+
17
+ s.authors = ["Unicorn developers"]
18
+ s.date = Time.now.utc.strftime('%Y-%m-%d')
19
+ s.description = File.read("README").split(/\n\n/)[1]
20
+ s.email = %q{mongrel-unicorn@rubyforge.org}
21
+ s.executables = %w(unicorn unicorn_rails)
22
+ s.extensions = %w(ext/unicorn_http/extconf.rb)
23
+
24
+ s.files = manifest
25
+ s.homepage = %q{http://unicorn.bogomips.org/}
26
+
27
+ summary = %q{Rack HTTP server for fast clients and Unix}
28
+ s.rdoc_options = [ "-Na", "-t", "Unicorn: #{summary}" ]
29
+ s.require_paths = %w(lib ext)
30
+ s.rubyforge_project = %q{mongrel}
31
+ s.summary = summary
32
+
33
+ s.test_files = test_files
34
+
35
+ # for people that are absolutely stuck on Rails 2.3.2 and can't
36
+ # up/downgrade to any other version, the Rack dependency may be
37
+ # commented out. Nevertheless, upgrading to Rails 2.3.4 or later is
38
+ # *strongly* recommended for security reasons.
39
+ s.add_dependency(%q<rack>)
40
+
41
+ # s.licenses = %w(GPLv2 Ruby) # licenses= method is not in older Rubygems
42
+ end
metadata ADDED
@@ -0,0 +1,228 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: giraffesoft-unicorn
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.93.5
5
+ platform: ruby
6
+ authors:
7
+ - Unicorn developers
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-11-02 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rack
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
25
+ description: |-
26
+ Unicorn is a HTTP server for Rack applications designed to only serve
27
+ fast clients on low-latency, high-bandwidth connections and take
28
+ advantage of features in Unix/Unix-like kernels. Slow clients should
29
+ only be served by placing a reverse proxy capable of fully buffering
30
+ both the the request and response in between Unicorn and slow clients.
31
+ email: mongrel-unicorn@rubyforge.org
32
+ executables:
33
+ - unicorn
34
+ - unicorn_rails
35
+ extensions:
36
+ - ext/unicorn_http/extconf.rb
37
+ extra_rdoc_files: []
38
+
39
+ files:
40
+ - .CHANGELOG.old
41
+ - .document
42
+ - .gitignore
43
+ - .mailmap
44
+ - .manifest
45
+ - CONTRIBUTORS
46
+ - COPYING
47
+ - ChangeLog
48
+ - DESIGN
49
+ - Documentation/.gitignore
50
+ - Documentation/GNUmakefile
51
+ - Documentation/unicorn.1.txt
52
+ - Documentation/unicorn_rails.1.txt
53
+ - GIT-VERSION-FILE
54
+ - GIT-VERSION-GEN
55
+ - GNUmakefile
56
+ - HACKING
57
+ - KNOWN_ISSUES
58
+ - LICENSE
59
+ - NEWS
60
+ - PHILOSOPHY
61
+ - README
62
+ - Rakefile
63
+ - SIGNALS
64
+ - TODO
65
+ - TUNING
66
+ - bin/unicorn
67
+ - bin/unicorn_rails
68
+ - examples/echo.ru
69
+ - examples/git.ru
70
+ - examples/init.sh
71
+ - ext/unicorn_http/c_util.h
72
+ - ext/unicorn_http/common_field_optimization.h
73
+ - ext/unicorn_http/ext_help.h
74
+ - ext/unicorn_http/extconf.rb
75
+ - ext/unicorn_http/global_variables.h
76
+ - ext/unicorn_http/unicorn_http.c
77
+ - ext/unicorn_http/unicorn_http.rl
78
+ - ext/unicorn_http/unicorn_http_common.rl
79
+ - lib/unicorn.rb
80
+ - lib/unicorn/app/exec_cgi.rb
81
+ - lib/unicorn/app/inetd.rb
82
+ - lib/unicorn/app/old_rails.rb
83
+ - lib/unicorn/app/old_rails/static.rb
84
+ - lib/unicorn/cgi_wrapper.rb
85
+ - lib/unicorn/configurator.rb
86
+ - lib/unicorn/const.rb
87
+ - lib/unicorn/http_request.rb
88
+ - lib/unicorn/http_response.rb
89
+ - lib/unicorn/launcher.rb
90
+ - lib/unicorn/socket_helper.rb
91
+ - lib/unicorn/tee_input.rb
92
+ - lib/unicorn/util.rb
93
+ - local.mk.sample
94
+ - setup.rb
95
+ - test/aggregate.rb
96
+ - test/benchmark/README
97
+ - test/benchmark/dd.ru
98
+ - test/exec/README
99
+ - test/exec/test_exec.rb
100
+ - test/rails/app-1.2.3/.gitignore
101
+ - test/rails/app-1.2.3/Rakefile
102
+ - test/rails/app-1.2.3/app/controllers/application.rb
103
+ - test/rails/app-1.2.3/app/controllers/foo_controller.rb
104
+ - test/rails/app-1.2.3/app/helpers/application_helper.rb
105
+ - test/rails/app-1.2.3/config/boot.rb
106
+ - test/rails/app-1.2.3/config/database.yml
107
+ - test/rails/app-1.2.3/config/environment.rb
108
+ - test/rails/app-1.2.3/config/environments/development.rb
109
+ - test/rails/app-1.2.3/config/environments/production.rb
110
+ - test/rails/app-1.2.3/config/routes.rb
111
+ - test/rails/app-1.2.3/db/.gitignore
112
+ - test/rails/app-1.2.3/log/.gitignore
113
+ - test/rails/app-1.2.3/public/404.html
114
+ - test/rails/app-1.2.3/public/500.html
115
+ - test/rails/app-2.0.2/.gitignore
116
+ - test/rails/app-2.0.2/Rakefile
117
+ - test/rails/app-2.0.2/app/controllers/application.rb
118
+ - test/rails/app-2.0.2/app/controllers/foo_controller.rb
119
+ - test/rails/app-2.0.2/app/helpers/application_helper.rb
120
+ - test/rails/app-2.0.2/config/boot.rb
121
+ - test/rails/app-2.0.2/config/database.yml
122
+ - test/rails/app-2.0.2/config/environment.rb
123
+ - test/rails/app-2.0.2/config/environments/development.rb
124
+ - test/rails/app-2.0.2/config/environments/production.rb
125
+ - test/rails/app-2.0.2/config/routes.rb
126
+ - test/rails/app-2.0.2/db/.gitignore
127
+ - test/rails/app-2.0.2/log/.gitignore
128
+ - test/rails/app-2.0.2/public/404.html
129
+ - test/rails/app-2.0.2/public/500.html
130
+ - test/rails/app-2.1.2/.gitignore
131
+ - test/rails/app-2.1.2/Rakefile
132
+ - test/rails/app-2.1.2/app/controllers/application.rb
133
+ - test/rails/app-2.1.2/app/controllers/foo_controller.rb
134
+ - test/rails/app-2.1.2/app/helpers/application_helper.rb
135
+ - test/rails/app-2.1.2/config/boot.rb
136
+ - test/rails/app-2.1.2/config/database.yml
137
+ - test/rails/app-2.1.2/config/environment.rb
138
+ - test/rails/app-2.1.2/config/environments/development.rb
139
+ - test/rails/app-2.1.2/config/environments/production.rb
140
+ - test/rails/app-2.1.2/config/routes.rb
141
+ - test/rails/app-2.1.2/db/.gitignore
142
+ - test/rails/app-2.1.2/log/.gitignore
143
+ - test/rails/app-2.1.2/public/404.html
144
+ - test/rails/app-2.1.2/public/500.html
145
+ - test/rails/app-2.2.2/.gitignore
146
+ - test/rails/app-2.2.2/Rakefile
147
+ - test/rails/app-2.2.2/app/controllers/application.rb
148
+ - test/rails/app-2.2.2/app/controllers/foo_controller.rb
149
+ - test/rails/app-2.2.2/app/helpers/application_helper.rb
150
+ - test/rails/app-2.2.2/config/boot.rb
151
+ - test/rails/app-2.2.2/config/database.yml
152
+ - test/rails/app-2.2.2/config/environment.rb
153
+ - test/rails/app-2.2.2/config/environments/development.rb
154
+ - test/rails/app-2.2.2/config/environments/production.rb
155
+ - test/rails/app-2.2.2/config/routes.rb
156
+ - test/rails/app-2.2.2/db/.gitignore
157
+ - test/rails/app-2.2.2/log/.gitignore
158
+ - test/rails/app-2.2.2/public/404.html
159
+ - test/rails/app-2.2.2/public/500.html
160
+ - test/rails/app-2.3.3.1/.gitignore
161
+ - test/rails/app-2.3.3.1/Rakefile
162
+ - test/rails/app-2.3.3.1/app/controllers/application_controller.rb
163
+ - test/rails/app-2.3.3.1/app/controllers/foo_controller.rb
164
+ - test/rails/app-2.3.3.1/app/helpers/application_helper.rb
165
+ - test/rails/app-2.3.3.1/config/boot.rb
166
+ - test/rails/app-2.3.3.1/config/database.yml
167
+ - test/rails/app-2.3.3.1/config/environment.rb
168
+ - test/rails/app-2.3.3.1/config/environments/development.rb
169
+ - test/rails/app-2.3.3.1/config/environments/production.rb
170
+ - test/rails/app-2.3.3.1/config/routes.rb
171
+ - test/rails/app-2.3.3.1/db/.gitignore
172
+ - test/rails/app-2.3.3.1/log/.gitignore
173
+ - test/rails/app-2.3.3.1/public/404.html
174
+ - test/rails/app-2.3.3.1/public/500.html
175
+ - test/rails/app-2.3.3.1/public/x.txt
176
+ - test/rails/test_rails.rb
177
+ - test/test_helper.rb
178
+ - test/unit/test_configurator.rb
179
+ - test/unit/test_http_parser.rb
180
+ - test/unit/test_http_parser_ng.rb
181
+ - test/unit/test_request.rb
182
+ - test/unit/test_response.rb
183
+ - test/unit/test_server.rb
184
+ - test/unit/test_signals.rb
185
+ - test/unit/test_socket_helper.rb
186
+ - test/unit/test_tee_input.rb
187
+ - test/unit/test_upload.rb
188
+ - test/unit/test_util.rb
189
+ - unicorn.gemspec
190
+ has_rdoc: true
191
+ homepage: http://unicorn.bogomips.org/
192
+ licenses: []
193
+
194
+ post_install_message:
195
+ rdoc_options:
196
+ - -Na
197
+ - -t
198
+ - "Unicorn: Rack HTTP server for fast clients and Unix"
199
+ require_paths:
200
+ - lib
201
+ - ext
202
+ required_ruby_version: !ruby/object:Gem::Requirement
203
+ requirements:
204
+ - - ">="
205
+ - !ruby/object:Gem::Version
206
+ version: "0"
207
+ version:
208
+ required_rubygems_version: !ruby/object:Gem::Requirement
209
+ requirements:
210
+ - - ">="
211
+ - !ruby/object:Gem::Version
212
+ version: "0"
213
+ version:
214
+ requirements: []
215
+
216
+ rubyforge_project: mongrel
217
+ rubygems_version: 1.3.5
218
+ signing_key:
219
+ specification_version: 3
220
+ summary: Rack HTTP server for fast clients and Unix
221
+ test_files:
222
+ - test/unit/test_configurator.rb
223
+ - test/unit/test_http_parser.rb
224
+ - test/unit/test_http_parser_ng.rb
225
+ - test/unit/test_request.rb
226
+ - test/unit/test_response.rb
227
+ - test/unit/test_server.rb
228
+ - test/unit/test_util.rb