Skip to content

Instantly share code, notes, and snippets.

@jackorp
Created April 30, 2021 11:21
Show Gist options
  • Save jackorp/8a9ee182fcda909755ab2929534b554b to your computer and use it in GitHub Desktop.
Save jackorp/8a9ee182fcda909755ab2929534b554b to your computer and use it in GitHub Desktop.
diff --git a/3.0/test/rack-test-app/Gemfile b/3.0/test/rack-test-app/Gemfile
index c10abd7..d89e792 100755
--- a/3.0/test/rack-test-app/Gemfile
+++ b/3.0/test/rack-test-app/Gemfile
@@ -1,3 +1,4 @@
source 'https://rubygems.org'
gem 'sinatra'
+gem 'webrick'
diff --git a/3.0/test/rack-test-app/Gemfile.lock b/3.0/test/rack-test-app/Gemfile.lock
index 1569406..b709dd3 100644
--- a/3.0/test/rack-test-app/Gemfile.lock
+++ b/3.0/test/rack-test-app/Gemfile.lock
@@ -1,19 +1,20 @@
GEM
remote: https://rubygems.org/
specs:
- mustermann (1.0.1)
- rack (2.0.4)
- rack-protection (2.0.0)
+ mustermann (1.1.1)
+ ruby2_keywords (~> 0.0.1)
+ rack (2.2.3)
+ rack-protection (2.1.0)
rack
- sinatra (2.0.0)
+ ruby2_keywords (0.0.4)
+ sinatra (2.1.0)
mustermann (~> 1.0)
- rack (~> 2.0)
- rack-protection (= 2.0.0)
+ rack (~> 2.2)
+ rack-protection (= 2.1.0)
tilt (~> 2.0)
- tilt (2.0.8)
-
-PLATFORMS
- ruby
+ tilt (2.0.10)
+ webrick (1.7.0)
DEPENDENCIES
sinatra
+ webrick
diff --git a/test/run b/test/run
index 47db88e..e092453 100755
--- a/test/run
+++ b/test/run
@@ -236,7 +236,7 @@ pushd ${test_dir}
if [ -d db-test-app ]; then
rm -rf db-test-app
fi
-git clone git://github.com/openshift/ruby-hello-world db-test-app
+git clone git://github.com/jackorp/ruby-hello-world db-test-app
popd
for server in ${WEB_SERVERS[@]}; do
@pvalena
Copy link

pvalena commented Apr 30, 2021

+git clone git://github.com/jackorp/ruby-hello-world db-test-app

Can we rather fix the upstream? They mostly want us to maintain it / own it, anyway.

@jackorp
Copy link
Author

jackorp commented Apr 30, 2021

I left it there only for testing if it would work... first I test that those changes actually fix it and then PR, we certainly don't want to keep that line in the PR...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment