├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── compare_linker.gemspec ├── guides └── jenkins_setup_guide.md ├── lib ├── compare_linker.rb └── compare_linker │ ├── formatter │ ├── base.rb │ ├── markdown.rb │ └── text.rb │ ├── github_link_finder.rb │ ├── github_tag_finder.rb │ ├── lockfile_comparator.rb │ ├── lockfile_fetcher.rb │ ├── version.rb │ └── webhook_payload.rb ├── payload.rb ├── runner.rb └── spec ├── fixtures ├── coffee-script-source.json ├── rails.json └── web_translate_it.json ├── lib └── compare_linker │ └── github_link_finder_spec.rb ├── spec_helper.rb └── support └── load_fixture.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/Rakefile -------------------------------------------------------------------------------- /compare_linker.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/compare_linker.gemspec -------------------------------------------------------------------------------- /guides/jenkins_setup_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/guides/jenkins_setup_guide.md -------------------------------------------------------------------------------- /lib/compare_linker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/lib/compare_linker.rb -------------------------------------------------------------------------------- /lib/compare_linker/formatter/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/lib/compare_linker/formatter/base.rb -------------------------------------------------------------------------------- /lib/compare_linker/formatter/markdown.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/lib/compare_linker/formatter/markdown.rb -------------------------------------------------------------------------------- /lib/compare_linker/formatter/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/lib/compare_linker/formatter/text.rb -------------------------------------------------------------------------------- /lib/compare_linker/github_link_finder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/lib/compare_linker/github_link_finder.rb -------------------------------------------------------------------------------- /lib/compare_linker/github_tag_finder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/lib/compare_linker/github_tag_finder.rb -------------------------------------------------------------------------------- /lib/compare_linker/lockfile_comparator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/lib/compare_linker/lockfile_comparator.rb -------------------------------------------------------------------------------- /lib/compare_linker/lockfile_fetcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/lib/compare_linker/lockfile_fetcher.rb -------------------------------------------------------------------------------- /lib/compare_linker/version.rb: -------------------------------------------------------------------------------- 1 | class CompareLinker 2 | VERSION = "1.1.9" 3 | end 4 | -------------------------------------------------------------------------------- /lib/compare_linker/webhook_payload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/lib/compare_linker/webhook_payload.rb -------------------------------------------------------------------------------- /payload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/payload.rb -------------------------------------------------------------------------------- /runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/runner.rb -------------------------------------------------------------------------------- /spec/fixtures/coffee-script-source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/spec/fixtures/coffee-script-source.json -------------------------------------------------------------------------------- /spec/fixtures/rails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/spec/fixtures/rails.json -------------------------------------------------------------------------------- /spec/fixtures/web_translate_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/spec/fixtures/web_translate_it.json -------------------------------------------------------------------------------- /spec/lib/compare_linker/github_link_finder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/spec/lib/compare_linker/github_link_finder_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/load_fixture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyanny/compare_linker/HEAD/spec/support/load_fixture.rb --------------------------------------------------------------------------------