├── .gitignore ├── .ruby-gemset ├── .ruby-version ├── CHANGELOG.txt ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── reqres_rspec.rb └── reqres_rspec │ ├── collector.rb │ ├── configuration.rb │ ├── formatters.rb │ ├── formatters │ ├── base.rb │ ├── html.rb │ ├── json.rb │ └── pdf.rb │ ├── templates │ ├── header.erb │ ├── index.erb │ ├── panel.erb │ └── spec.erb │ ├── uploaders.rb │ ├── uploaders │ └── amazon_s3.rb │ ├── utils.rb │ └── version.rb └── reqres_rspec.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | reqres_rspec 2 | 3 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.2.2 2 | -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler/gem_tasks' -------------------------------------------------------------------------------- /lib/reqres_rspec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/lib/reqres_rspec.rb -------------------------------------------------------------------------------- /lib/reqres_rspec/collector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/lib/reqres_rspec/collector.rb -------------------------------------------------------------------------------- /lib/reqres_rspec/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/lib/reqres_rspec/configuration.rb -------------------------------------------------------------------------------- /lib/reqres_rspec/formatters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/lib/reqres_rspec/formatters.rb -------------------------------------------------------------------------------- /lib/reqres_rspec/formatters/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/lib/reqres_rspec/formatters/base.rb -------------------------------------------------------------------------------- /lib/reqres_rspec/formatters/html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/lib/reqres_rspec/formatters/html.rb -------------------------------------------------------------------------------- /lib/reqres_rspec/formatters/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/lib/reqres_rspec/formatters/json.rb -------------------------------------------------------------------------------- /lib/reqres_rspec/formatters/pdf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/lib/reqres_rspec/formatters/pdf.rb -------------------------------------------------------------------------------- /lib/reqres_rspec/templates/header.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/lib/reqres_rspec/templates/header.erb -------------------------------------------------------------------------------- /lib/reqres_rspec/templates/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/lib/reqres_rspec/templates/index.erb -------------------------------------------------------------------------------- /lib/reqres_rspec/templates/panel.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/lib/reqres_rspec/templates/panel.erb -------------------------------------------------------------------------------- /lib/reqres_rspec/templates/spec.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/lib/reqres_rspec/templates/spec.erb -------------------------------------------------------------------------------- /lib/reqres_rspec/uploaders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/lib/reqres_rspec/uploaders.rb -------------------------------------------------------------------------------- /lib/reqres_rspec/uploaders/amazon_s3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/lib/reqres_rspec/uploaders/amazon_s3.rb -------------------------------------------------------------------------------- /lib/reqres_rspec/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/lib/reqres_rspec/utils.rb -------------------------------------------------------------------------------- /lib/reqres_rspec/version.rb: -------------------------------------------------------------------------------- 1 | module ReqresRspec 2 | VERSION = '0.2.7' 3 | end 4 | -------------------------------------------------------------------------------- /reqres_rspec.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqres-api/reqres_rspec/HEAD/reqres_rspec.gemspec --------------------------------------------------------------------------------