├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── app.rb ├── bench.rb ├── docs ├── index.html ├── jit.svg └── vm.svg ├── driver.yml └── profile.rb /.gitignore: -------------------------------------------------------------------------------- 1 | /*.dump 2 | /perf.data* 3 | /trace_location-*.md 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-driver/sinatra/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-driver/sinatra/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-driver/sinatra/HEAD/README.md -------------------------------------------------------------------------------- /app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-driver/sinatra/HEAD/app.rb -------------------------------------------------------------------------------- /bench.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-driver/sinatra/HEAD/bench.rb -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-driver/sinatra/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-driver/sinatra/HEAD/docs/jit.svg -------------------------------------------------------------------------------- /docs/vm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-driver/sinatra/HEAD/docs/vm.svg -------------------------------------------------------------------------------- /driver.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-driver/sinatra/HEAD/driver.yml -------------------------------------------------------------------------------- /profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benchmark-driver/sinatra/HEAD/profile.rb --------------------------------------------------------------------------------