├── .DS_Store ├── .gitignore ├── .rvmrc ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.rdoc ├── Rakefile ├── bin ├── autospec ├── coderay ├── htmldiff ├── ldiff ├── nokogiri ├── pry ├── rackup ├── rake └── rspec ├── gatling.gemspec ├── lib ├── gatling.rb └── gatling │ ├── capture_element.rb │ ├── comparison.rb │ ├── configuration.rb │ ├── image.rb │ ├── matchers │ └── look_like_matcher.rb │ └── version.rb ├── pkg └── gatling-0.0.1.gem ├── reports └── rspec_unit_test_output.html ├── spec ├── acceptance │ ├── gatling_acceptance_spec.rb │ └── rspec_matcher_spec.rb ├── capture_spec.rb ├── comparison_spec.rb ├── configuration_spec.rb ├── gatling_spec.rb ├── image_spec.rb ├── integration │ └── gatling_integration_spec.rb ├── spec.opts ├── spec_helper.rb └── support │ └── assets │ └── fruit_app.html └── temp-1032.rdb /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/.gitignore -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | rvm 1.9.2@gatling --create 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/autospec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/bin/autospec -------------------------------------------------------------------------------- /bin/coderay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/bin/coderay -------------------------------------------------------------------------------- /bin/htmldiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/bin/htmldiff -------------------------------------------------------------------------------- /bin/ldiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/bin/ldiff -------------------------------------------------------------------------------- /bin/nokogiri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/bin/nokogiri -------------------------------------------------------------------------------- /bin/pry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/bin/pry -------------------------------------------------------------------------------- /bin/rackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/bin/rackup -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/bin/rspec -------------------------------------------------------------------------------- /gatling.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/gatling.gemspec -------------------------------------------------------------------------------- /lib/gatling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/lib/gatling.rb -------------------------------------------------------------------------------- /lib/gatling/capture_element.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/lib/gatling/capture_element.rb -------------------------------------------------------------------------------- /lib/gatling/comparison.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/lib/gatling/comparison.rb -------------------------------------------------------------------------------- /lib/gatling/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/lib/gatling/configuration.rb -------------------------------------------------------------------------------- /lib/gatling/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/lib/gatling/image.rb -------------------------------------------------------------------------------- /lib/gatling/matchers/look_like_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/lib/gatling/matchers/look_like_matcher.rb -------------------------------------------------------------------------------- /lib/gatling/version.rb: -------------------------------------------------------------------------------- 1 | module Gatling 2 | VERSION = "1.1.3" 3 | end 4 | -------------------------------------------------------------------------------- /pkg/gatling-0.0.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/pkg/gatling-0.0.1.gem -------------------------------------------------------------------------------- /reports/rspec_unit_test_output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/reports/rspec_unit_test_output.html -------------------------------------------------------------------------------- /spec/acceptance/gatling_acceptance_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/spec/acceptance/gatling_acceptance_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/rspec_matcher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/spec/acceptance/rspec_matcher_spec.rb -------------------------------------------------------------------------------- /spec/capture_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/spec/capture_spec.rb -------------------------------------------------------------------------------- /spec/comparison_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/spec/comparison_spec.rb -------------------------------------------------------------------------------- /spec/configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/spec/configuration_spec.rb -------------------------------------------------------------------------------- /spec/gatling_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/spec/gatling_spec.rb -------------------------------------------------------------------------------- /spec/image_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/spec/image_spec.rb -------------------------------------------------------------------------------- /spec/integration/gatling_integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/spec/integration/gatling_integration_spec.rb -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/spec/spec.opts -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/assets/fruit_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrotbart/gatling/HEAD/spec/support/assets/fruit_app.html -------------------------------------------------------------------------------- /temp-1032.rdb: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------