Update to unicorn 4.4.0. Remove some patches accepted upstream.
Minor changes to get the regression tests to run.
This commit is contained in:
parent
43ddf9ad22
commit
0922d64fef
@ -1,9 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.8 2012/09/23 16:57:36 jeremy Exp $
|
||||
# $OpenBSD: Makefile,v 1.9 2012/10/13 10:49:49 jeremy Exp $
|
||||
|
||||
COMMENT = ruby-rack HTTP server for Unix and fast clients
|
||||
|
||||
DISTNAME = unicorn-4.1.1
|
||||
REVISION = 0
|
||||
DISTNAME = unicorn-4.4.0
|
||||
CATEGORIES = www
|
||||
|
||||
HOMEPAGE = http://unicorn.bogomips.org/
|
||||
@ -35,6 +34,6 @@ REGRESS_DEPENDS = devel/gmake \
|
||||
devel/ruby-isolate,${MODRUBY_FLAVOR}
|
||||
do-regress:
|
||||
cd ${WRKSRC} && RUBYOPT=-rubygems RUBY=${RUBY} MRI=${RUBY} \
|
||||
MAKE='gmake -ek' gmake -ek test-integration test
|
||||
MAKE='gmake -ek' gmake -ek test
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,5 +1,2 @@
|
||||
MD5 (unicorn-4.1.1.gem) = qxAQXCvmE5NzMIlOcN8sdQ==
|
||||
RMD160 (unicorn-4.1.1.gem) = ZUXABK4/CylvWKt71qydGcQdTrI=
|
||||
SHA1 (unicorn-4.1.1.gem) = PnvebfTN2YIYkJzNQNh+3toBBQY=
|
||||
SHA256 (unicorn-4.1.1.gem) = 12rVdrl+oCNtHw3t16rNeRCY1K3T7/vzZpzpIdCL2tM=
|
||||
SIZE (unicorn-4.1.1.gem) = 247296
|
||||
SHA256 (unicorn-4.4.0.gem) = uW/mktRo7w2EqEvN19U5wyqv76LtunDpA55+NKaB15o=
|
||||
SIZE (unicorn-4.4.0.gem) = 251392
|
||||
|
15
www/ruby-unicorn/patches/patch-script_isolate_for_tests
Normal file
15
www/ruby-unicorn/patches/patch-script_isolate_for_tests
Normal file
@ -0,0 +1,15 @@
|
||||
$OpenBSD: patch-script_isolate_for_tests,v 1.1 2012/10/13 10:49:49 jeremy Exp $
|
||||
|
||||
Don't use isolate when testing.
|
||||
|
||||
--- script/isolate_for_tests.orig Fri Oct 12 14:49:04 2012
|
||||
+++ script/isolate_for_tests Fri Oct 12 14:50:49 2012
|
||||
@@ -20,7 +20,7 @@ pid = fork do
|
||||
gem 'kgio-monkey', '0.4.0'
|
||||
gem 'kgio', '2.7.4'
|
||||
gem 'rack', '1.4.1'
|
||||
- end
|
||||
+ end if false
|
||||
end
|
||||
_, status = Process.waitpid2(pid)
|
||||
status.success? or abort status.inspect
|
@ -1,12 +0,0 @@
|
||||
$OpenBSD: patch-t_t0011-active-unix-socket_sh,v 1.1 2011/11/18 00:05:43 jeremy Exp $
|
||||
--- t/t0011-active-unix-socket.sh.orig Tue Nov 15 20:28:37 2011
|
||||
+++ t/t0011-active-unix-socket.sh Tue Nov 15 20:28:54 2011
|
||||
@@ -7,7 +7,7 @@ read_pid_unix () {
|
||||
socat - UNIX:$unix_socket | \
|
||||
tail -1)
|
||||
test -n "$x"
|
||||
- y="$(expr "$x" : '\([0-9]\+\)')"
|
||||
+ y="$(expr "$x" : '\([0-9][0-9]*\)')"
|
||||
test x"$x" = x"$y"
|
||||
test -n "$y"
|
||||
echo "$y"
|
@ -1,38 +0,0 @@
|
||||
$OpenBSD: patch-t_test-lib_sh,v 1.1 2011/11/18 00:05:43 jeremy Exp $
|
||||
--- t/test-lib.sh.orig Thu Jan 1 01:00:00 1970
|
||||
+++ t/test-lib.sh Tue Nov 15 22:02:59 2011
|
||||
@@ -38,20 +38,24 @@ rtmpfiles () {
|
||||
for id in "$@"
|
||||
do
|
||||
name=$id
|
||||
- _tmp=$t_pfx.$id
|
||||
- eval "$id=$_tmp"
|
||||
|
||||
case $name in
|
||||
*fifo)
|
||||
+ _tmp=$t_pfx.$id
|
||||
+ eval "$id=$_tmp"
|
||||
rm -f $_tmp
|
||||
mkfifo $_tmp
|
||||
T_RM_LIST="$T_RM_LIST $_tmp"
|
||||
;;
|
||||
*socket)
|
||||
+ _tmp=$(echo "$t_pfx.$id" | $RUBY -e 'print $stdin.read(103)')
|
||||
+ eval "$id=$_tmp"
|
||||
rm -f $_tmp
|
||||
T_RM_LIST="$T_RM_LIST $_tmp"
|
||||
;;
|
||||
*)
|
||||
+ _tmp=$t_pfx.$id
|
||||
+ eval "$id=$_tmp"
|
||||
> $_tmp
|
||||
T_OK_RM_LIST="$T_OK_RM_LIST $_tmp"
|
||||
;;
|
||||
@@ -101,6 +105,7 @@ unicorn_wait_start () {
|
||||
|
||||
rsha1 () {
|
||||
_cmd="$(which sha1sum 2>/dev/null || :)"
|
||||
+ test -n "$_cmd" || _cmd="$(which sha1 2>/dev/null || :) -q"
|
||||
test -n "$_cmd" || _cmd="$(which openssl 2>/dev/null || :) sha1"
|
||||
test "$_cmd" != " sha1" || _cmd="$(which gsha1sum 2>/dev/null || :)"
|
||||
|
@ -1,11 +0,0 @@
|
||||
$OpenBSD: patch-test_test_helper_rb,v 1.1 2011/11/18 00:05:43 jeremy Exp $
|
||||
--- test/test_helper.rb.orig Tue Nov 15 20:43:39 2011
|
||||
+++ test/test_helper.rb Tue Nov 15 20:46:17 2011
|
||||
@@ -72,6 +72,7 @@ def hit(uris)
|
||||
res = nil
|
||||
|
||||
if u.kind_of? String
|
||||
+ u = 'http://127.0.0.1:8080/' if u == 'http://0.0.0.0:8080/'
|
||||
res = Net::HTTP.get(URI.parse(u))
|
||||
else
|
||||
url = URI.parse(u[0])
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.5 2011/11/18 00:05:43 jeremy Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.6 2012/10/13 10:49:49 jeremy Exp $
|
||||
${GEM_BIN}/unicorn${GEM_BIN_SUFFIX}
|
||||
${GEM_BIN}/unicorn_rails${GEM_BIN_SUFFIX}
|
||||
${GEM_LIB}/cache/${DISTNAME}.gem
|
||||
@ -86,6 +86,9 @@ ${GEM_LIB}/gems/${DISTNAME}/lib/unicorn/launcher.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/unicorn/oob_gc.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/unicorn/preread_input.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/unicorn/socket_helper.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/unicorn/ssl_client.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/unicorn/ssl_configurator.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/unicorn/ssl_server.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/unicorn/stream_input.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/unicorn/tee_input.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/lib/unicorn/tmpio.rb
|
||||
@ -106,65 +109,17 @@ ${GEM_LIB}/gems/${DISTNAME}/t/bin/sha1sum.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/bin/unused_listen
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/bin/utee
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/broken-app.ru
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/detach.ru
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/env.ru
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/heartbeat-timeout.ru
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/listener_names.ru
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/my-tap-lib.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/oob_gc.ru
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/oob_gc_path.ru
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/pid.ru
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/preread_input.ru
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rack-input-tests.ru
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/.gitignore
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/Gemfile
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/Rakefile
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/app/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/app/controllers/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/app/controllers/application_controller.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/app/helpers/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/app/helpers/application_helper.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/app/views/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/app/views/layouts/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/app/views/layouts/application.html.erb
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/config/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/config.ru
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/config/application.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/config/boot.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/config/database.yml
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/config/environment.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/config/environments/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/config/environments/development.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/config/environments/production.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/config/environments/test.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/config/initializers/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/config/initializers/backtrace_silencers.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/config/initializers/inflections.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/config/initializers/mime_types.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/config/initializers/secret_token.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/config/initializers/session_store.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/config/locales/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/config/locales/en.yml
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/config/routes.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/db/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/db/seeds.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/doc/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/doc/README_FOR_APP
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/lib/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/lib/tasks/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/lib/tasks/.gitkeep
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/public/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/public/404.html
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/public/500.html
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/public/x.txt
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/script/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/script/rails
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/test/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/test/performance/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/test/performance/browsing_test.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/test/test_helper.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/vendor/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/vendor/plugins/
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/rails3-app/vendor/plugins/.gitkeep
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/sslgen.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t0000-http-basic.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t0001-reload-bad-config.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t0002-config-conflict.sh
|
||||
@ -192,19 +147,16 @@ ${GEM_LIB}/gems/${DISTNAME}/t/t0017-trust-x-forwarded-true.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t0018-write-on-close.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t0019-max_header_len.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t0020-at_exit-handler.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t0021-process_detach.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t0022-listener_names-preload_app.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t0100-rack-input-tests.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t0116-client_body_buffer_size.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t0116.ru
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t0300-rails3-basic.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t0301-rails3-missing-config-ru.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t0302-rails3-alt-working_directory.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t0303-rails3-alt-working_directory_config.ru.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t0304-rails3-alt-working_directory_no_embed_cli.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t0600-https-server-basic.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t9000-preread-input.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t9001-oob_gc.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/t9002-oob_gc-path.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/test-lib.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/test-rails3.sh
|
||||
${GEM_LIB}/gems/${DISTNAME}/t/write-on-close.ru
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/aggregate.rb
|
||||
@ -215,104 +167,6 @@ ${GEM_LIB}/gems/${DISTNAME}/test/benchmark/stack.ru
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/exec/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/exec/README
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/exec/test_exec.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/.gitignore
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/Rakefile
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/app/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/app/controllers/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/app/controllers/application.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/app/controllers/foo_controller.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/app/helpers/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/app/helpers/application_helper.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/config/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/config/boot.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/config/database.yml
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/config/environment.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/config/environments/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/config/environments/development.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/config/environments/production.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/config/routes.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/db/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/db/.gitignore
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/log/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/log/.gitignore
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/public/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/public/404.html
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-1.2.3/public/500.html
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/.gitignore
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/Rakefile
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/app/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/app/controllers/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/app/controllers/application.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/app/controllers/foo_controller.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/app/helpers/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/app/helpers/application_helper.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/config/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/config/boot.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/config/database.yml
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/config/environment.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/config/environments/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/config/environments/development.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/config/environments/production.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/config/routes.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/db/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/db/.gitignore
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/log/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/log/.gitignore
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/public/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/public/404.html
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.0.2/public/500.html
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/.gitignore
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/Rakefile
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/app/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/app/controllers/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/app/controllers/application.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/app/controllers/foo_controller.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/app/helpers/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/app/helpers/application_helper.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/config/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/config/boot.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/config/database.yml
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/config/environment.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/config/environments/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/config/environments/development.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/config/environments/production.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/config/routes.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/db/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/db/.gitignore
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/log/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/log/.gitignore
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/public/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/public/404.html
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.1.2/public/500.html
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/.gitignore
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/Rakefile
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/app/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/app/controllers/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/app/controllers/application.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/app/controllers/foo_controller.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/app/helpers/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/app/helpers/application_helper.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/config/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/config/boot.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/config/database.yml
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/config/environment.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/config/environments/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/config/environments/development.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/config/environments/production.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/config/routes.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/db/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/db/.gitignore
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/log/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/log/.gitignore
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/public/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/public/404.html
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/app-2.2.2/public/500.html
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/rails/test_rails.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/test_helper.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/unit/
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/unit/test_configurator.rb
|
||||
@ -324,6 +178,7 @@ ${GEM_LIB}/gems/${DISTNAME}/test/unit/test_request.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/unit/test_response.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/unit/test_server.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/unit/test_signals.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/unit/test_sni_hostnames.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/unit/test_socket_helper.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/unit/test_stream_input.rb
|
||||
${GEM_LIB}/gems/${DISTNAME}/test/unit/test_tee_input.rb
|
||||
|
Loading…
x
Reference in New Issue
Block a user