Skip to content

Instantly share code, notes, and snippets.

@jackorp
Created February 13, 2024 15:48
Show Gist options
  • Save jackorp/d6f10a3b9f8430a7951244a041657129 to your computer and use it in GitHub Desktop.
Save jackorp/d6f10a3b9f8430a7951244a041657129 to your computer and use it in GitHub Desktop.
+ ruby -v
ruby 2.5.9p229 (2021-04-05 revision 67939) [x86_64-linux]
+ cp -r /my-app/ /tmp
+ cd /tmp/my-app
+ bundle install --path vendor
Fetching gem metadata from https://rubygems.org/........
Fetching rake 13.0.3
Installing rake 13.0.3
Fetching concurrent-ruby 1.2.3
Installing concurrent-ruby 1.2.3
Fetching i18n 1.8.9
Installing i18n 1.8.9
Fetching minitest 5.14.4
Installing minitest 5.14.4
Fetching tzinfo 2.0.6
Installing tzinfo 2.0.6
Fetching zeitwerk 2.6.13
Installing zeitwerk 2.6.13
Fetching activesupport 6.1.7.6
Installing activesupport 6.1.7.6
Fetching activemodel 6.1.7.6
Installing activemodel 6.1.7.6
Fetching activerecord 6.1.7.6
Installing activerecord 6.1.7.6
Using bundler 1.16.1
Fetching ruby2_keywords 0.0.5
Installing ruby2_keywords 0.0.5
Fetching mustermann 1.1.2
Installing mustermann 1.1.2
Fetching mysql2 0.5.5
Installing mysql2 0.5.5 with native extensions
Fetching rack 2.2.8
Installing rack 2.2.8
Fetching rack-protection 2.1.0
Installing rack-protection 2.1.0
Fetching tilt 2.3.0
Installing tilt 2.3.0
Fetching sinatra 2.1.0
Installing sinatra 2.1.0
Fetching sinatra-activerecord 2.0.22
Installing sinatra-activerecord 2.0.22
Fetching webrick 1.7.0
Installing webrick 1.7.0
Bundle complete! 7 Gemfile dependencies, 19 gems now installed.
Bundled gems are installed into `./vendor`
+ timeout 10 bundle exec rackup
Parsing options from the first comment line is deprecated!
Run app...
[2024-02-13 15:45:13] INFO WEBrick 1.7.0
[2024-02-13 15:45:13] INFO ruby 2.5.9 (2021-04-05) [x86_64-linux]
[2024-02-13 15:45:13] INFO WEBrick::HTTPServer#start: pid=295 port=8080
[2024-02-13 15:45:22] FATAL SignalException: SIGTERM
/tmp/my-app/vendor/ruby/2.5.0/gems/webrick-1.7.0/lib/webrick/server.rb:173:in `select'
/tmp/my-app/vendor/ruby/2.5.0/gems/webrick-1.7.0/lib/webrick/server.rb:173:in `block in start'
/tmp/my-app/vendor/ruby/2.5.0/gems/webrick-1.7.0/lib/webrick/server.rb:32:in `start'
/tmp/my-app/vendor/ruby/2.5.0/gems/webrick-1.7.0/lib/webrick/server.rb:160:in `start'
/tmp/my-app/vendor/ruby/2.5.0/gems/rack-2.2.8/lib/rack/handler/webrick.rb:41:in `run'
/tmp/my-app/vendor/ruby/2.5.0/gems/rack-2.2.8/lib/rack/server.rb:327:in `start'
/tmp/my-app/vendor/ruby/2.5.0/gems/rack-2.2.8/lib/rack/server.rb:168:in `start'
/tmp/my-app/vendor/ruby/2.5.0/gems/rack-2.2.8/bin/rackup:5:in `<top (required)>'
/tmp/my-app/vendor/ruby/2.5.0/bin/rackup:23:in `load'
/tmp/my-app/vendor/ruby/2.5.0/bin/rackup:23:in `<top (required)>'
/usr/share/gems/gems/bundler-1.16.1/lib/bundler/cli/exec.rb:75:in `load'
/usr/share/gems/gems/bundler-1.16.1/lib/bundler/cli/exec.rb:75:in `kernel_load'
/usr/share/gems/gems/bundler-1.16.1/lib/bundler/cli/exec.rb:28:in `run'
/usr/share/gems/gems/bundler-1.16.1/lib/bundler/cli.rb:424:in `exec'
/usr/share/gems/gems/bundler-1.16.1/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
/usr/share/gems/gems/bundler-1.16.1/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
/usr/share/gems/gems/bundler-1.16.1/lib/bundler/vendor/thor/lib/thor.rb:387:in `dispatch'
/usr/share/gems/gems/bundler-1.16.1/lib/bundler/cli.rb:27:in `dispatch'
/usr/share/gems/gems/bundler-1.16.1/lib/bundler/vendor/thor/lib/thor/base.rb:466:in `start'
/usr/share/gems/gems/bundler-1.16.1/lib/bundler/cli.rb:18:in `start'
/usr/share/gems/gems/bundler-1.16.1/exe/bundle:30:in `block in <top (required)>'
/usr/share/gems/gems/bundler-1.16.1/lib/bundler/friendly_errors.rb:122:in `with_friendly_errors'
/usr/share/gems/gems/bundler-1.16.1/exe/bundle:22:in `<top (required)>'
/usr/bin/bundle:23:in `load'
/usr/bin/bundle:23:in `<main>'
[2024-02-13 15:45:22] INFO going to shutdown ...
[2024-02-13 15:45:22] INFO WEBrick::HTTPServer#start done.
+ R=124
+ cat Gemfile.lock
GEM
remote: https://rubygems.org/
specs:
activemodel (6.1.7.6)
activesupport (= 6.1.7.6)
activerecord (6.1.7.6)
activemodel (= 6.1.7.6)
activesupport (= 6.1.7.6)
activesupport (6.1.7.6)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
concurrent-ruby (1.2.3)
i18n (1.8.9)
concurrent-ruby (~> 1.0)
minitest (5.14.4)
mustermann (1.1.2)
ruby2_keywords (~> 0.0.1)
mysql2 (0.5.5)
rack (2.2.8)
rack-protection (2.1.0)
rack
rake (13.0.3)
ruby2_keywords (0.0.5)
sinatra (2.1.0)
mustermann (~> 1.0)
rack (~> 2.2)
rack-protection (= 2.1.0)
tilt (~> 2.0)
sinatra-activerecord (2.0.22)
activerecord (>= 4.1)
sinatra (>= 1.0)
tilt (2.3.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
webrick (1.7.0)
zeitwerk (2.6.13)
PLATFORMS
ruby
DEPENDENCIES
i18n (= 1.8.9)
minitest (= 5.14.4)
mysql2 (= 0.5.5)
rake (= 13.0.3)
sinatra (= 2.1.0)
sinatra-activerecord (= 2.0.22)
webrick (= 1.7.0)
+ [[ 124 -eq 124 ]]
+ exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment