├── .document ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── test.yml ├── .gitignore ├── .gitmodules ├── .rspec ├── .yardopts ├── COPYING.txt ├── ChangeLog.md ├── Gemfile ├── README.md ├── Rakefile ├── bin └── setup ├── bundler-leak.gemspec ├── code-of-conduct.md ├── data └── ruby-mem-advisory-db.ts ├── exe ├── bundle-leak └── bundler-leak ├── fastruby-logo.png ├── gemspec.yml ├── lib └── bundler │ ├── plumber.rb │ └── plumber │ ├── advisory.rb │ ├── cli.rb │ ├── database.rb │ ├── scanner.rb │ ├── task.rb │ └── version.rb ├── pull_request_template.md └── spec ├── advisory_spec.rb ├── audit_spec.rb ├── bundle └── unpatched_gems │ ├── Gemfile │ └── Gemfile.lock ├── cli_spec.rb ├── database_spec.rb ├── fixtures └── not_a_hash.yml ├── integration_spec.rb ├── scanner_spec.rb └── spec_helper.rb /.document: -------------------------------------------------------------------------------- 1 | - 2 | ChangeLog.md 3 | COPYING.txt 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/.gitmodules -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour --format documentation 2 | -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/.yardopts -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/COPYING.txt -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | git submodule update --init 4 | bundle install 5 | -------------------------------------------------------------------------------- /bundler-leak.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/bundler-leak.gemspec -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /data/ruby-mem-advisory-db.ts: -------------------------------------------------------------------------------- 1 | 2019-08-28 18:09:52 UTC -------------------------------------------------------------------------------- /exe/bundle-leak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/exe/bundle-leak -------------------------------------------------------------------------------- /exe/bundler-leak: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | load File.expand_path('../bundle-leak', __FILE__) 4 | -------------------------------------------------------------------------------- /fastruby-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/fastruby-logo.png -------------------------------------------------------------------------------- /gemspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/gemspec.yml -------------------------------------------------------------------------------- /lib/bundler/plumber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/lib/bundler/plumber.rb -------------------------------------------------------------------------------- /lib/bundler/plumber/advisory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/lib/bundler/plumber/advisory.rb -------------------------------------------------------------------------------- /lib/bundler/plumber/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/lib/bundler/plumber/cli.rb -------------------------------------------------------------------------------- /lib/bundler/plumber/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/lib/bundler/plumber/database.rb -------------------------------------------------------------------------------- /lib/bundler/plumber/scanner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/lib/bundler/plumber/scanner.rb -------------------------------------------------------------------------------- /lib/bundler/plumber/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/lib/bundler/plumber/task.rb -------------------------------------------------------------------------------- /lib/bundler/plumber/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/lib/bundler/plumber/version.rb -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /spec/advisory_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/spec/advisory_spec.rb -------------------------------------------------------------------------------- /spec/audit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/spec/audit_spec.rb -------------------------------------------------------------------------------- /spec/bundle/unpatched_gems/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/spec/bundle/unpatched_gems/Gemfile -------------------------------------------------------------------------------- /spec/bundle/unpatched_gems/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/spec/bundle/unpatched_gems/Gemfile.lock -------------------------------------------------------------------------------- /spec/cli_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/spec/cli_spec.rb -------------------------------------------------------------------------------- /spec/database_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/spec/database_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/not_a_hash.yml: -------------------------------------------------------------------------------- 1 | --- 2 | "Just a string." 3 | -------------------------------------------------------------------------------- /spec/integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/spec/integration_spec.rb -------------------------------------------------------------------------------- /spec/scanner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/spec/scanner_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubymem/bundler-leak/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------