├── .github └── workflows │ └── dynamic-security.yml ├── .gitignore ├── .rspec ├── .travis.yml ├── Appraisals ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── SECURITY.md ├── capybara_discoball.gemspec ├── gemfiles ├── capybara_2.gemfile └── capybara_3.gemfile ├── lib ├── capybara_discoball.rb └── capybara_discoball │ ├── retryable.rb │ ├── runner.rb │ ├── server.rb │ └── version.rb └── spec ├── black_box └── rails_app_spec.rb ├── lib ├── capybara_discoball │ └── runner_spec.rb └── capybara_discoball_spec.rb └── spec_helper.rb /.github/workflows/dynamic-security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/.github/workflows/dynamic-security.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/.travis.yml -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/Appraisals -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/SECURITY.md -------------------------------------------------------------------------------- /capybara_discoball.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/capybara_discoball.gemspec -------------------------------------------------------------------------------- /gemfiles/capybara_2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/gemfiles/capybara_2.gemfile -------------------------------------------------------------------------------- /gemfiles/capybara_3.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/gemfiles/capybara_3.gemfile -------------------------------------------------------------------------------- /lib/capybara_discoball.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/lib/capybara_discoball.rb -------------------------------------------------------------------------------- /lib/capybara_discoball/retryable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/lib/capybara_discoball/retryable.rb -------------------------------------------------------------------------------- /lib/capybara_discoball/runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/lib/capybara_discoball/runner.rb -------------------------------------------------------------------------------- /lib/capybara_discoball/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/lib/capybara_discoball/server.rb -------------------------------------------------------------------------------- /lib/capybara_discoball/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/lib/capybara_discoball/version.rb -------------------------------------------------------------------------------- /spec/black_box/rails_app_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/spec/black_box/rails_app_spec.rb -------------------------------------------------------------------------------- /spec/lib/capybara_discoball/runner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/spec/lib/capybara_discoball/runner_spec.rb -------------------------------------------------------------------------------- /spec/lib/capybara_discoball_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/spec/lib/capybara_discoball_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/capybara_discoball/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------