perf_check
perf_check copied to clipboard
PERRRFFF CHERRRRK!
Bumps [diffy](https://github.com/samg/diffy) from 3.3.0 to 3.4.2. Changelog Sourced from diffy's changelog. == 3.4.2 == Silence warning from unused variable when using ruby -w. Thanks @sambostock! == 3.4.1 == Prevent remote...
Bumps [rake](https://github.com/ruby/rake) from 12.3.2 to 13.0.1. Changelog *Sourced from [rake's changelog](https://github.com/ruby/rake/blob/master/History.rdoc).* > === 13.0.1 > > ==== Bug fixes > > * Fixed bug: Reenabled task raises previous exception on...
Some applications require additional tools to run before a Rails server can be started like `yarn install`.
* As a developer I want to get all measurement from a PerfCheck so I can store them for later use. References #61.
By adding `bundler` as a runtime dependency we can require Bundler without having to bundle exec in the target application. This makes `perf_check /` work instead of `bundle exec perf_check...
PerfCheck currently communicates at the user in two ways: a Logger instance and exceptions. This implementation makes sense in the context of a terminal application with a command-line interface but...
It should be possible to run `perf_check` from a Rails project without using bundle exec.
When we get a 3xx response from a server it's not entirely clear if the request was successful. It helps to see where the redirect goes to know if it...
In a specific edge case in the PerfCheck CI test suite we built an app that has a blank database when we run PerfCheck. The following happens: 1. Fetch and...
If we don't deamonize the Rails server we have far more direct control over the process. ```ruby Open3.popen2e( 'rails', 'server', '--environment', rails_environment, '--binding', rails_hostname, '--port', rails_port.to_s, chdir: app_root ) do...