$ bundle exec stackprof-webnav
vendor/ruby/3.3.0/gems/stackprof-webnav-1.0.4/bin/stackprof-webnav:25:in `<top (required)>': uninitialized constant Rack::Handler (NameError)
Rack::Handler.pick(['thin', 'webrick']).run server.new, :Host => options[:addr], :Port => options[:port]
^^^^^^^^^
from vendor/ruby/3.3.0/bin/stackprof-webnav:25:in `load'
from vendor/ruby/3.3.0/bin/stackprof-webnav:25:in `<main>'
I have not tried to be smart, but a Q&D fix is
-Rack::Handler.pick(['thin', 'webrick']).run server.new, :Host => options[:addr], :Port => options[:port]
+Rackup::Handler.pick(['thin', 'webrick']).run server.new, :Host => options[:addr], :Port => options[:port]
in bin/stackprof-webnav.
I have
- rack (3.1.7)
- rack-protection (4.0.0)
- rack-session (2.0.0)
- rackup (2.1.0)
Cheers!
I have not tried to be smart, but a Q&D fix is
in
bin/stackprof-webnav.I have
Cheers!