Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configure Capybara to run
Webrick
in tests
This commit resolves dependecy issues due to the absence of `puma` from the project's Gemfiles: ``` Failure/Error: raise LoadError, "Capybara is unable to load `puma` for its server, please add `puma` to your project or specify a different server via something like `Capybara.server = :webrick`." LoadError: Capybara is unable to load `puma` for its server, please add `puma` to your project or specify a different server via something like `Capybara.server = :webrick`. ``` Instead of adding an additional dependency, configure Capybara to use `webrick`, which is available as part of Ruby's standard library.
- Loading branch information