├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── codeql-analysis.yml │ └── publish.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── docs └── screenshot.png ├── lib └── rspec │ ├── github.rb │ └── github │ ├── formatter.rb │ ├── notification_decorator.rb │ └── version.rb ├── rspec-github.gemspec └── spec ├── integration ├── failing_spec.rb └── relative_path │ └── pending_spec.rb ├── rspec └── github │ ├── formatter_spec.rb │ └── version_spec.rb └── spec_helper.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/.rspec -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/README.md -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /lib/rspec/github.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/lib/rspec/github.rb -------------------------------------------------------------------------------- /lib/rspec/github/formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/lib/rspec/github/formatter.rb -------------------------------------------------------------------------------- /lib/rspec/github/notification_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/lib/rspec/github/notification_decorator.rb -------------------------------------------------------------------------------- /lib/rspec/github/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/lib/rspec/github/version.rb -------------------------------------------------------------------------------- /rspec-github.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/rspec-github.gemspec -------------------------------------------------------------------------------- /spec/integration/failing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/spec/integration/failing_spec.rb -------------------------------------------------------------------------------- /spec/integration/relative_path/pending_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/spec/integration/relative_path/pending_spec.rb -------------------------------------------------------------------------------- /spec/rspec/github/formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/spec/rspec/github/formatter_spec.rb -------------------------------------------------------------------------------- /spec/rspec/github/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/spec/rspec/github/version_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drieam/rspec-github/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------