File: zeitwerk_app.rb

package info (click to toggle)
ruby-sinatra 4.2.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,944 kB
  • sloc: ruby: 17,702; sh: 25; makefile: 8
file content (8 lines) | stat: -rw-r--r-- 164 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
require "bundler/setup"
# This needs to come first so that sinatra require goes through zeitwerk loader
require "zeitwerk"
require "sinatra"

get "/" do
  "OK"
end