├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── danger-junit.gemspec ├── img └── example.png ├── lib ├── danger_junit.rb ├── danger_plugin.rb └── junit │ ├── gem_version.rb │ └── plugin.rb └── spec ├── fixtures ├── danger-junit-fail.xml ├── eigen_fail.xml ├── fastlane_trainer.xml ├── rspec_fail.xml └── selenium.xml ├── junit_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | pkg 3 | .idea/ 4 | /danger-junit-fail.xml 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-junit/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-junit/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-junit/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-junit/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-junit/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-junit/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-junit/HEAD/Rakefile -------------------------------------------------------------------------------- /danger-junit.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-junit/HEAD/danger-junit.gemspec -------------------------------------------------------------------------------- /img/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-junit/HEAD/img/example.png -------------------------------------------------------------------------------- /lib/danger_junit.rb: -------------------------------------------------------------------------------- 1 | require 'junit/gem_version' 2 | -------------------------------------------------------------------------------- /lib/danger_plugin.rb: -------------------------------------------------------------------------------- 1 | require 'junit/plugin' 2 | -------------------------------------------------------------------------------- /lib/junit/gem_version.rb: -------------------------------------------------------------------------------- 1 | module Junit 2 | VERSION = '1.0.1'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /lib/junit/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-junit/HEAD/lib/junit/plugin.rb -------------------------------------------------------------------------------- /spec/fixtures/danger-junit-fail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-junit/HEAD/spec/fixtures/danger-junit-fail.xml -------------------------------------------------------------------------------- /spec/fixtures/eigen_fail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-junit/HEAD/spec/fixtures/eigen_fail.xml -------------------------------------------------------------------------------- /spec/fixtures/fastlane_trainer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-junit/HEAD/spec/fixtures/fastlane_trainer.xml -------------------------------------------------------------------------------- /spec/fixtures/rspec_fail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-junit/HEAD/spec/fixtures/rspec_fail.xml -------------------------------------------------------------------------------- /spec/fixtures/selenium.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-junit/HEAD/spec/fixtures/selenium.xml -------------------------------------------------------------------------------- /spec/junit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-junit/HEAD/spec/junit_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-junit/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------