unicorn-fotopedia 0.99.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (163) hide show
  1. data/.CHANGELOG.old +25 -0
  2. data/.document +19 -0
  3. data/.gitignore +21 -0
  4. data/.mailmap +26 -0
  5. data/CONTRIBUTORS +32 -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 +171 -0
  11. data/Documentation/unicorn_rails.1.txt +172 -0
  12. data/FAQ +52 -0
  13. data/GIT-VERSION-GEN +40 -0
  14. data/GNUmakefile +292 -0
  15. data/HACKING +116 -0
  16. data/ISSUES +36 -0
  17. data/KNOWN_ISSUES +50 -0
  18. data/LICENSE +55 -0
  19. data/PHILOSOPHY +145 -0
  20. data/README +149 -0
  21. data/Rakefile +191 -0
  22. data/SIGNALS +109 -0
  23. data/Sandbox +78 -0
  24. data/TODO +5 -0
  25. data/TUNING +70 -0
  26. data/bin/unicorn +126 -0
  27. data/bin/unicorn_rails +203 -0
  28. data/examples/big_app_gc.rb +33 -0
  29. data/examples/echo.ru +27 -0
  30. data/examples/git.ru +13 -0
  31. data/examples/init.sh +58 -0
  32. data/examples/logger_mp_safe.rb +25 -0
  33. data/examples/nginx.conf +139 -0
  34. data/examples/unicorn.conf.rb +78 -0
  35. data/ext/unicorn_http/CFLAGS +13 -0
  36. data/ext/unicorn_http/c_util.h +124 -0
  37. data/ext/unicorn_http/common_field_optimization.h +111 -0
  38. data/ext/unicorn_http/ext_help.h +77 -0
  39. data/ext/unicorn_http/extconf.rb +14 -0
  40. data/ext/unicorn_http/global_variables.h +89 -0
  41. data/ext/unicorn_http/unicorn_http.rl +714 -0
  42. data/ext/unicorn_http/unicorn_http_common.rl +75 -0
  43. data/lib/unicorn.rb +847 -0
  44. data/lib/unicorn/app/exec_cgi.rb +150 -0
  45. data/lib/unicorn/app/inetd.rb +109 -0
  46. data/lib/unicorn/app/old_rails.rb +33 -0
  47. data/lib/unicorn/app/old_rails/static.rb +58 -0
  48. data/lib/unicorn/cgi_wrapper.rb +145 -0
  49. data/lib/unicorn/configurator.rb +421 -0
  50. data/lib/unicorn/const.rb +34 -0
  51. data/lib/unicorn/http_request.rb +72 -0
  52. data/lib/unicorn/http_response.rb +75 -0
  53. data/lib/unicorn/launcher.rb +65 -0
  54. data/lib/unicorn/oob_gc.rb +58 -0
  55. data/lib/unicorn/socket_helper.rb +152 -0
  56. data/lib/unicorn/tee_input.rb +217 -0
  57. data/lib/unicorn/util.rb +90 -0
  58. data/local.mk.sample +62 -0
  59. data/setup.rb +1586 -0
  60. data/t/.gitignore +2 -0
  61. data/t/GNUmakefile +67 -0
  62. data/t/README +42 -0
  63. data/t/bin/content-md5-put +36 -0
  64. data/t/bin/sha1sum.rb +23 -0
  65. data/t/bin/unused_listen +40 -0
  66. data/t/bin/utee +12 -0
  67. data/t/env.ru +3 -0
  68. data/t/my-tap-lib.sh +200 -0
  69. data/t/t0000-http-basic.sh +50 -0
  70. data/t/t0001-reload-bad-config.sh +52 -0
  71. data/t/t0002-config-conflict.sh +49 -0
  72. data/t/test-lib.sh +100 -0
  73. data/test/aggregate.rb +15 -0
  74. data/test/benchmark/README +50 -0
  75. data/test/benchmark/dd.ru +18 -0
  76. data/test/exec/README +5 -0
  77. data/test/exec/test_exec.rb +1038 -0
  78. data/test/rails/app-1.2.3/.gitignore +2 -0
  79. data/test/rails/app-1.2.3/Rakefile +7 -0
  80. data/test/rails/app-1.2.3/app/controllers/application.rb +6 -0
  81. data/test/rails/app-1.2.3/app/controllers/foo_controller.rb +36 -0
  82. data/test/rails/app-1.2.3/app/helpers/application_helper.rb +4 -0
  83. data/test/rails/app-1.2.3/config/boot.rb +11 -0
  84. data/test/rails/app-1.2.3/config/database.yml +12 -0
  85. data/test/rails/app-1.2.3/config/environment.rb +13 -0
  86. data/test/rails/app-1.2.3/config/environments/development.rb +9 -0
  87. data/test/rails/app-1.2.3/config/environments/production.rb +5 -0
  88. data/test/rails/app-1.2.3/config/routes.rb +6 -0
  89. data/test/rails/app-1.2.3/db/.gitignore +0 -0
  90. data/test/rails/app-1.2.3/public/404.html +1 -0
  91. data/test/rails/app-1.2.3/public/500.html +1 -0
  92. data/test/rails/app-2.0.2/.gitignore +2 -0
  93. data/test/rails/app-2.0.2/Rakefile +7 -0
  94. data/test/rails/app-2.0.2/app/controllers/application.rb +4 -0
  95. data/test/rails/app-2.0.2/app/controllers/foo_controller.rb +36 -0
  96. data/test/rails/app-2.0.2/app/helpers/application_helper.rb +4 -0
  97. data/test/rails/app-2.0.2/config/boot.rb +11 -0
  98. data/test/rails/app-2.0.2/config/database.yml +12 -0
  99. data/test/rails/app-2.0.2/config/environment.rb +17 -0
  100. data/test/rails/app-2.0.2/config/environments/development.rb +8 -0
  101. data/test/rails/app-2.0.2/config/environments/production.rb +5 -0
  102. data/test/rails/app-2.0.2/config/routes.rb +6 -0
  103. data/test/rails/app-2.0.2/db/.gitignore +0 -0
  104. data/test/rails/app-2.0.2/public/404.html +1 -0
  105. data/test/rails/app-2.0.2/public/500.html +1 -0
  106. data/test/rails/app-2.1.2/.gitignore +2 -0
  107. data/test/rails/app-2.1.2/Rakefile +7 -0
  108. data/test/rails/app-2.1.2/app/controllers/application.rb +4 -0
  109. data/test/rails/app-2.1.2/app/controllers/foo_controller.rb +36 -0
  110. data/test/rails/app-2.1.2/app/helpers/application_helper.rb +4 -0
  111. data/test/rails/app-2.1.2/config/boot.rb +111 -0
  112. data/test/rails/app-2.1.2/config/database.yml +12 -0
  113. data/test/rails/app-2.1.2/config/environment.rb +17 -0
  114. data/test/rails/app-2.1.2/config/environments/development.rb +7 -0
  115. data/test/rails/app-2.1.2/config/environments/production.rb +5 -0
  116. data/test/rails/app-2.1.2/config/routes.rb +6 -0
  117. data/test/rails/app-2.1.2/db/.gitignore +0 -0
  118. data/test/rails/app-2.1.2/public/404.html +1 -0
  119. data/test/rails/app-2.1.2/public/500.html +1 -0
  120. data/test/rails/app-2.2.2/.gitignore +2 -0
  121. data/test/rails/app-2.2.2/Rakefile +7 -0
  122. data/test/rails/app-2.2.2/app/controllers/application.rb +4 -0
  123. data/test/rails/app-2.2.2/app/controllers/foo_controller.rb +36 -0
  124. data/test/rails/app-2.2.2/app/helpers/application_helper.rb +4 -0
  125. data/test/rails/app-2.2.2/config/boot.rb +111 -0
  126. data/test/rails/app-2.2.2/config/database.yml +12 -0
  127. data/test/rails/app-2.2.2/config/environment.rb +17 -0
  128. data/test/rails/app-2.2.2/config/environments/development.rb +7 -0
  129. data/test/rails/app-2.2.2/config/environments/production.rb +5 -0
  130. data/test/rails/app-2.2.2/config/routes.rb +6 -0
  131. data/test/rails/app-2.2.2/db/.gitignore +0 -0
  132. data/test/rails/app-2.2.2/public/404.html +1 -0
  133. data/test/rails/app-2.2.2/public/500.html +1 -0
  134. data/test/rails/app-2.3.5/.gitignore +2 -0
  135. data/test/rails/app-2.3.5/Rakefile +7 -0
  136. data/test/rails/app-2.3.5/app/controllers/application_controller.rb +5 -0
  137. data/test/rails/app-2.3.5/app/controllers/foo_controller.rb +36 -0
  138. data/test/rails/app-2.3.5/app/helpers/application_helper.rb +4 -0
  139. data/test/rails/app-2.3.5/config/boot.rb +109 -0
  140. data/test/rails/app-2.3.5/config/database.yml +12 -0
  141. data/test/rails/app-2.3.5/config/environment.rb +17 -0
  142. data/test/rails/app-2.3.5/config/environments/development.rb +7 -0
  143. data/test/rails/app-2.3.5/config/environments/production.rb +6 -0
  144. data/test/rails/app-2.3.5/config/routes.rb +6 -0
  145. data/test/rails/app-2.3.5/db/.gitignore +0 -0
  146. data/test/rails/app-2.3.5/public/404.html +1 -0
  147. data/test/rails/app-2.3.5/public/500.html +1 -0
  148. data/test/rails/app-2.3.5/public/x.txt +1 -0
  149. data/test/rails/test_rails.rb +280 -0
  150. data/test/test_helper.rb +301 -0
  151. data/test/unit/test_configurator.rb +150 -0
  152. data/test/unit/test_http_parser.rb +555 -0
  153. data/test/unit/test_http_parser_ng.rb +443 -0
  154. data/test/unit/test_request.rb +184 -0
  155. data/test/unit/test_response.rb +110 -0
  156. data/test/unit/test_server.rb +291 -0
  157. data/test/unit/test_signals.rb +206 -0
  158. data/test/unit/test_socket_helper.rb +147 -0
  159. data/test/unit/test_tee_input.rb +257 -0
  160. data/test/unit/test_upload.rb +298 -0
  161. data/test/unit/test_util.rb +96 -0
  162. data/unicorn.gemspec +52 -0
  163. metadata +283 -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('')
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('')
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('')
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('')
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('')
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
@@ -0,0 +1,52 @@
1
+ # -*- encoding: binary -*-
2
+
3
+ ENV["VERSION"] or abort "VERSION= must be specified"
4
+ manifest = File.readlines('.manifest').map! { |x| x.chomp! }
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{unicorn-fotopedia}
15
+ s.version = ENV["VERSION"]
16
+
17
+ s.authors = ["Unicorn hackers","Fotopedia"]
18
+ s.date = Time.now.utc.strftime('%Y-%m-%d')
19
+ s.description = File.read("README").split(/\n\n/)[1]
20
+ s.executables = %w(unicorn unicorn_rails)
21
+ s.extensions = %w(ext/unicorn_http/extconf.rb)
22
+
23
+ s.extra_rdoc_files = File.readlines('.document').map! do |x|
24
+ x.chomp!
25
+ if File.directory?(x)
26
+ manifest.grep(%r{\A#{x}/})
27
+ elsif File.file?(x)
28
+ x
29
+ else
30
+ nil
31
+ end
32
+ end.flatten.compact
33
+
34
+ s.files = manifest
35
+ s.homepage = %q{http://unicorn.bogomips.org/}
36
+
37
+ summary = %q{Rack HTTP server for fast clients and Unix}
38
+ s.rdoc_options = [ "-Na", "-t", "Unicorn: #{summary}" ]
39
+ s.require_paths = %w(lib ext)
40
+ s.rubyforge_project = %q{mongrel}
41
+ s.summary = summary
42
+
43
+ s.test_files = test_files
44
+
45
+ # for people that are absolutely stuck on Rails 2.3.2 and can't
46
+ # up/downgrade to any other version, the Rack dependency may be
47
+ # commented out. Nevertheless, upgrading to Rails 2.3.4 or later is
48
+ # *strongly* recommended for security reasons.
49
+ s.add_dependency(%q<rack>)
50
+
51
+ # s.licenses = %w(GPLv2 Ruby) # licenses= method is not in older RubyGems
52
+ end
metadata ADDED
@@ -0,0 +1,283 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: unicorn-fotopedia
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.99.1
5
+ platform: ruby
6
+ authors:
7
+ - Unicorn hackers
8
+ - Fotopedia
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2010-06-03 00:00:00 +00:00
14
+ default_executable:
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: rack
18
+ type: :runtime
19
+ version_requirement:
20
+ version_requirements: !ruby/object:Gem::Requirement
21
+ requirements:
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: "0"
25
+ version:
26
+ description: |-
27
+ \Unicorn is an HTTP server for Rack applications designed to only serve
28
+ fast clients on low-latency, high-bandwidth connections and take
29
+ advantage of features in Unix/Unix-like kernels. Slow clients should
30
+ only be served by placing a reverse proxy capable of fully buffering
31
+ both the the request and response in between Unicorn and slow clients.
32
+ email:
33
+ executables:
34
+ - unicorn
35
+ - unicorn_rails
36
+ extensions:
37
+ - ext/unicorn_http/extconf.rb
38
+ extra_rdoc_files:
39
+ - FAQ
40
+ - README
41
+ - TUNING
42
+ - PHILOSOPHY
43
+ - HACKING
44
+ - DESIGN
45
+ - CONTRIBUTORS
46
+ - LICENSE
47
+ - SIGNALS
48
+ - KNOWN_ISSUES
49
+ - TODO
50
+ - NEWS
51
+ - ChangeLog
52
+ - lib/unicorn.rb
53
+ - lib/unicorn/app/exec_cgi.rb
54
+ - lib/unicorn/app/inetd.rb
55
+ - lib/unicorn/app/old_rails.rb
56
+ - lib/unicorn/app/old_rails/static.rb
57
+ - lib/unicorn/cgi_wrapper.rb
58
+ - lib/unicorn/configurator.rb
59
+ - lib/unicorn/const.rb
60
+ - lib/unicorn/http_request.rb
61
+ - lib/unicorn/http_response.rb
62
+ - lib/unicorn/launcher.rb
63
+ - lib/unicorn/oob_gc.rb
64
+ - lib/unicorn/socket_helper.rb
65
+ - lib/unicorn/tee_input.rb
66
+ - lib/unicorn/util.rb
67
+ - ext/unicorn_http/unicorn_http.c
68
+ - ISSUES
69
+ - Sandbox
70
+ files:
71
+ - .CHANGELOG.old
72
+ - .document
73
+ - .gitignore
74
+ - .mailmap
75
+ - .manifest
76
+ - CONTRIBUTORS
77
+ - COPYING
78
+ - ChangeLog
79
+ - DESIGN
80
+ - Documentation/.gitignore
81
+ - Documentation/GNUmakefile
82
+ - Documentation/unicorn.1.txt
83
+ - Documentation/unicorn_rails.1.txt
84
+ - FAQ
85
+ - GIT-VERSION-FILE
86
+ - GIT-VERSION-GEN
87
+ - GNUmakefile
88
+ - HACKING
89
+ - ISSUES
90
+ - KNOWN_ISSUES
91
+ - LICENSE
92
+ - NEWS
93
+ - PHILOSOPHY
94
+ - README
95
+ - Rakefile
96
+ - SIGNALS
97
+ - Sandbox
98
+ - TODO
99
+ - TUNING
100
+ - bin/unicorn
101
+ - bin/unicorn_rails
102
+ - examples/big_app_gc.rb
103
+ - examples/echo.ru
104
+ - examples/git.ru
105
+ - examples/init.sh
106
+ - examples/logger_mp_safe.rb
107
+ - examples/nginx.conf
108
+ - examples/unicorn.conf.rb
109
+ - ext/unicorn_http/CFLAGS
110
+ - ext/unicorn_http/c_util.h
111
+ - ext/unicorn_http/common_field_optimization.h
112
+ - ext/unicorn_http/ext_help.h
113
+ - ext/unicorn_http/extconf.rb
114
+ - ext/unicorn_http/global_variables.h
115
+ - ext/unicorn_http/unicorn_http.c
116
+ - ext/unicorn_http/unicorn_http.rl
117
+ - ext/unicorn_http/unicorn_http_common.rl
118
+ - lib/unicorn.rb
119
+ - lib/unicorn/app/exec_cgi.rb
120
+ - lib/unicorn/app/inetd.rb
121
+ - lib/unicorn/app/old_rails.rb
122
+ - lib/unicorn/app/old_rails/static.rb
123
+ - lib/unicorn/cgi_wrapper.rb
124
+ - lib/unicorn/configurator.rb
125
+ - lib/unicorn/const.rb
126
+ - lib/unicorn/http_request.rb
127
+ - lib/unicorn/http_response.rb
128
+ - lib/unicorn/launcher.rb
129
+ - lib/unicorn/oob_gc.rb
130
+ - lib/unicorn/socket_helper.rb
131
+ - lib/unicorn/tee_input.rb
132
+ - lib/unicorn/util.rb
133
+ - local.mk.sample
134
+ - man/man1/unicorn.1
135
+ - man/man1/unicorn_rails.1
136
+ - setup.rb
137
+ - t/.gitignore
138
+ - t/GNUmakefile
139
+ - t/README
140
+ - t/bin/content-md5-put
141
+ - t/bin/sha1sum.rb
142
+ - t/bin/unused_listen
143
+ - t/bin/utee
144
+ - t/env.ru
145
+ - t/my-tap-lib.sh
146
+ - t/t0000-http-basic.sh
147
+ - t/t0001-reload-bad-config.sh
148
+ - t/t0002-config-conflict.sh
149
+ - t/test-lib.sh
150
+ - test/aggregate.rb
151
+ - test/benchmark/README
152
+ - test/benchmark/dd.ru
153
+ - test/exec/README
154
+ - test/exec/test_exec.rb
155
+ - test/rails/app-1.2.3/.gitignore
156
+ - test/rails/app-1.2.3/Rakefile
157
+ - test/rails/app-1.2.3/app/controllers/application.rb
158
+ - test/rails/app-1.2.3/app/controllers/foo_controller.rb
159
+ - test/rails/app-1.2.3/app/helpers/application_helper.rb
160
+ - test/rails/app-1.2.3/config/boot.rb
161
+ - test/rails/app-1.2.3/config/database.yml
162
+ - test/rails/app-1.2.3/config/environment.rb
163
+ - test/rails/app-1.2.3/config/environments/development.rb
164
+ - test/rails/app-1.2.3/config/environments/production.rb
165
+ - test/rails/app-1.2.3/config/routes.rb
166
+ - test/rails/app-1.2.3/db/.gitignore
167
+ - test/rails/app-1.2.3/log/.gitignore
168
+ - test/rails/app-1.2.3/public/404.html
169
+ - test/rails/app-1.2.3/public/500.html
170
+ - test/rails/app-2.0.2/.gitignore
171
+ - test/rails/app-2.0.2/Rakefile
172
+ - test/rails/app-2.0.2/app/controllers/application.rb
173
+ - test/rails/app-2.0.2/app/controllers/foo_controller.rb
174
+ - test/rails/app-2.0.2/app/helpers/application_helper.rb
175
+ - test/rails/app-2.0.2/config/boot.rb
176
+ - test/rails/app-2.0.2/config/database.yml
177
+ - test/rails/app-2.0.2/config/environment.rb
178
+ - test/rails/app-2.0.2/config/environments/development.rb
179
+ - test/rails/app-2.0.2/config/environments/production.rb
180
+ - test/rails/app-2.0.2/config/routes.rb
181
+ - test/rails/app-2.0.2/db/.gitignore
182
+ - test/rails/app-2.0.2/log/.gitignore
183
+ - test/rails/app-2.0.2/public/404.html
184
+ - test/rails/app-2.0.2/public/500.html
185
+ - test/rails/app-2.1.2/.gitignore
186
+ - test/rails/app-2.1.2/Rakefile
187
+ - test/rails/app-2.1.2/app/controllers/application.rb
188
+ - test/rails/app-2.1.2/app/controllers/foo_controller.rb
189
+ - test/rails/app-2.1.2/app/helpers/application_helper.rb
190
+ - test/rails/app-2.1.2/config/boot.rb
191
+ - test/rails/app-2.1.2/config/database.yml
192
+ - test/rails/app-2.1.2/config/environment.rb
193
+ - test/rails/app-2.1.2/config/environments/development.rb
194
+ - test/rails/app-2.1.2/config/environments/production.rb
195
+ - test/rails/app-2.1.2/config/routes.rb
196
+ - test/rails/app-2.1.2/db/.gitignore
197
+ - test/rails/app-2.1.2/log/.gitignore
198
+ - test/rails/app-2.1.2/public/404.html
199
+ - test/rails/app-2.1.2/public/500.html
200
+ - test/rails/app-2.2.2/.gitignore
201
+ - test/rails/app-2.2.2/Rakefile
202
+ - test/rails/app-2.2.2/app/controllers/application.rb
203
+ - test/rails/app-2.2.2/app/controllers/foo_controller.rb
204
+ - test/rails/app-2.2.2/app/helpers/application_helper.rb
205
+ - test/rails/app-2.2.2/config/boot.rb
206
+ - test/rails/app-2.2.2/config/database.yml
207
+ - test/rails/app-2.2.2/config/environment.rb
208
+ - test/rails/app-2.2.2/config/environments/development.rb
209
+ - test/rails/app-2.2.2/config/environments/production.rb
210
+ - test/rails/app-2.2.2/config/routes.rb
211
+ - test/rails/app-2.2.2/db/.gitignore
212
+ - test/rails/app-2.2.2/log/.gitignore
213
+ - test/rails/app-2.2.2/public/404.html
214
+ - test/rails/app-2.2.2/public/500.html
215
+ - test/rails/app-2.3.5/.gitignore
216
+ - test/rails/app-2.3.5/Rakefile
217
+ - test/rails/app-2.3.5/app/controllers/application_controller.rb
218
+ - test/rails/app-2.3.5/app/controllers/foo_controller.rb
219
+ - test/rails/app-2.3.5/app/helpers/application_helper.rb
220
+ - test/rails/app-2.3.5/config/boot.rb
221
+ - test/rails/app-2.3.5/config/database.yml
222
+ - test/rails/app-2.3.5/config/environment.rb
223
+ - test/rails/app-2.3.5/config/environments/development.rb
224
+ - test/rails/app-2.3.5/config/environments/production.rb
225
+ - test/rails/app-2.3.5/config/routes.rb
226
+ - test/rails/app-2.3.5/db/.gitignore
227
+ - test/rails/app-2.3.5/log/.gitignore
228
+ - test/rails/app-2.3.5/public/404.html
229
+ - test/rails/app-2.3.5/public/500.html
230
+ - test/rails/app-2.3.5/public/x.txt
231
+ - test/rails/test_rails.rb
232
+ - test/test_helper.rb
233
+ - test/unit/test_configurator.rb
234
+ - test/unit/test_http_parser.rb
235
+ - test/unit/test_http_parser_ng.rb
236
+ - test/unit/test_request.rb
237
+ - test/unit/test_response.rb
238
+ - test/unit/test_server.rb
239
+ - test/unit/test_signals.rb
240
+ - test/unit/test_socket_helper.rb
241
+ - test/unit/test_tee_input.rb
242
+ - test/unit/test_upload.rb
243
+ - test/unit/test_util.rb
244
+ - unicorn.gemspec
245
+ has_rdoc: true
246
+ homepage: http://unicorn.bogomips.org/
247
+ licenses: []
248
+
249
+ post_install_message:
250
+ rdoc_options:
251
+ - -Na
252
+ - -t
253
+ - "Unicorn: Rack HTTP server for fast clients and Unix"
254
+ require_paths:
255
+ - lib
256
+ - ext
257
+ required_ruby_version: !ruby/object:Gem::Requirement
258
+ requirements:
259
+ - - ">="
260
+ - !ruby/object:Gem::Version
261
+ version: "0"
262
+ version:
263
+ required_rubygems_version: !ruby/object:Gem::Requirement
264
+ requirements:
265
+ - - ">="
266
+ - !ruby/object:Gem::Version
267
+ version: "0"
268
+ version:
269
+ requirements: []
270
+
271
+ rubyforge_project: mongrel
272
+ rubygems_version: 1.3.5
273
+ signing_key:
274
+ specification_version: 3
275
+ summary: Rack HTTP server for fast clients and Unix
276
+ test_files:
277
+ - test/unit/test_configurator.rb
278
+ - test/unit/test_http_parser.rb
279
+ - test/unit/test_http_parser_ng.rb
280
+ - test/unit/test_request.rb
281
+ - test/unit/test_response.rb
282
+ - test/unit/test_server.rb
283
+ - test/unit/test_util.rb