├── .github ├── dependabot.yml ├── release.yml └── workflows │ ├── licensed.yml │ ├── release.yml │ ├── stale.yml │ └── test.yml ├── .gitignore ├── .licensed.test.yml ├── .licensed.yml ├── .licenses └── bundler │ ├── addressable.dep.yml │ ├── csv.dep.yml │ ├── dotenv.dep.yml │ ├── faraday-net_http.dep.yml │ ├── faraday.dep.yml │ ├── json.dep.yml │ ├── licensee.dep.yml │ ├── logger.dep.yml │ ├── net-http.dep.yml │ ├── nokogiri.dep.yml │ ├── octokit.dep.yml │ ├── parallel.dep.yml │ ├── pathname-common_prefix.dep.yml │ ├── public_suffix.dep.yml │ ├── racc.dep.yml │ ├── reverse_markdown.dep.yml │ ├── ruby-xxHash.dep.yml │ ├── rugged.dep.yml │ ├── sawyer.dep.yml │ ├── thor.dep.yml │ ├── tomlrb.dep.yml │ └── uri.dep.yml ├── .rubocop.yml ├── .ruby-version ├── .vscode └── settings.json ├── Brewfile ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── docs ├── adding_a_new_source.md ├── commands │ ├── README.md │ ├── cache.md │ ├── env.md │ ├── list.md │ ├── migrate.md │ ├── notices.md │ ├── status.md │ └── version.md ├── configuration.md ├── configuration │ ├── README.md │ ├── additional_terms.md │ ├── allowed_licenses.md │ ├── application_name.md │ ├── application_source.md │ ├── configuration_root.md │ ├── configuring_multiple_apps.md │ ├── customizing_licensee.md │ ├── dependency_source_enumerators.md │ ├── ignoring_dependencies.md │ ├── metadata_cache.md │ └── reviewing_dependencies.md ├── getting_started.md ├── migrations │ ├── v2.md │ └── v3.md ├── reporters.md └── sources │ ├── bower.md │ ├── bundler.md │ ├── cabal.md │ ├── cargo.md │ ├── cocoapods.md │ ├── composer.md │ ├── dep.md │ ├── git_submodule.md │ ├── go.md │ ├── gradle.md │ ├── manifests.md │ ├── mix.md │ ├── npm.md │ ├── nuget.md │ ├── pip.md │ ├── pipenv.md │ ├── pnpm.md │ ├── stack.md │ ├── swift.md │ └── yarn.md ├── exe └── licensed ├── lib ├── licensed.rb └── licensed │ ├── cli.rb │ ├── commands.rb │ ├── commands │ ├── cache.rb │ ├── command.rb │ ├── environment.rb │ ├── list.rb │ ├── notices.rb │ └── status.rb │ ├── configuration.rb │ ├── dependency.rb │ ├── dependency_record.rb │ ├── git.rb │ ├── migrations.rb │ ├── migrations │ └── v2.rb │ ├── report.rb │ ├── reporters.rb │ ├── reporters │ ├── cache_reporter.rb │ ├── json_reporter.rb │ ├── list_reporter.rb │ ├── notices_reporter.rb │ ├── reporter.rb │ ├── status_reporter.rb │ └── yaml_reporter.rb │ ├── shell.rb │ ├── sources.rb │ ├── sources │ ├── bower.rb │ ├── bundler.rb │ ├── bundler │ │ ├── definition.rb │ │ └── missing_specification.rb │ ├── cabal.rb │ ├── cargo.rb │ ├── cocoapods.rb │ ├── composer.rb │ ├── dep.rb │ ├── git_submodule.rb │ ├── go.rb │ ├── gradle.rb │ ├── helpers │ │ └── content_versioning.rb │ ├── manifest.rb │ ├── mix.rb │ ├── npm.rb │ ├── nuget.rb │ ├── pip.rb │ ├── pipenv.rb │ ├── pnpm.rb │ ├── source.rb │ ├── swift.rb │ ├── yarn.rb │ └── yarn │ │ ├── berry.rb │ │ └── v1.rb │ ├── ui │ └── shell.rb │ └── version.rb ├── licensed.gemspec ├── script ├── bootstrap ├── cibuild ├── console ├── setup ├── source-setup │ ├── bower │ ├── bundler │ ├── cabal │ ├── cargo │ ├── cocoapods │ ├── composer │ ├── dep │ ├── git_submodule │ ├── go │ ├── mix │ ├── npm │ ├── nuget │ ├── pip │ ├── pipenv │ ├── pnpm │ ├── swift │ └── yarn │ │ ├── berry │ │ └── v1 └── test └── test ├── cli_test.rb ├── commands ├── cache_test.rb ├── command_test.rb ├── environment_test.rb ├── list_test.rb ├── notices_test.rb └── status_test.rb ├── configuration_test.rb ├── dependency_record_test.rb ├── dependency_test.rb ├── fixtures ├── bower │ ├── .gitignore │ ├── .licensed.yml │ └── bower.json ├── bundler │ ├── .gitignore │ ├── .licensed.yml │ ├── Gemfile │ └── pathed-gem-fixture │ │ ├── fixture.rb │ │ └── pathed-gem-fixture.gemspec ├── cabal │ ├── .gitignore │ ├── .licensed.yml │ ├── app.cabal │ └── app │ │ └── Main.hs ├── cargo │ ├── .gitignore │ ├── .licensed.yml │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── cli │ └── .licensed.yml ├── cocoapods │ ├── .gitignore │ ├── .licensed.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── Podfile │ ├── Podfile.lock │ ├── ios.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── ios.xcworkspace │ │ └── contents.xcworkspacedata │ └── project.yml ├── composer │ ├── .gitignore │ ├── .licensed.yml │ ├── composer.json │ └── composer.lock ├── config │ ├── .licensed.json │ ├── .licensed.unknown │ ├── .licensed.yml │ ├── config.yml │ ├── root.yml │ └── root_at_configuration.yml ├── dep │ ├── .gitignore │ ├── .licensed.yml │ └── src │ │ └── test │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── cmd │ │ └── command │ │ │ └── main.go │ │ ├── internal │ │ └── fakevendor │ │ │ └── github.com │ │ │ └── owner │ │ │ └── repo │ │ │ └── testpackage.go │ │ ├── pkg │ │ └── world │ │ │ └── hello.go │ │ ├── test.go │ │ └── vendor │ │ ├── github.com │ │ ├── davecgh │ │ │ └── go-spew │ │ │ │ ├── LICENSE │ │ │ │ └── spew │ │ │ │ ├── bypass.go │ │ │ │ ├── bypasssafe.go │ │ │ │ ├── common.go │ │ │ │ ├── common_test.go │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── dump.go │ │ │ │ ├── dump_test.go │ │ │ │ ├── dumpcgo_test.go │ │ │ │ ├── dumpnocgo_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── format.go │ │ │ │ ├── format_test.go │ │ │ │ ├── internal_test.go │ │ │ │ ├── internalunsafe_test.go │ │ │ │ ├── spew.go │ │ │ │ └── spew_test.go │ │ ├── gorilla │ │ │ └── context │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── context.go │ │ │ │ ├── context_test.go │ │ │ │ └── doc.go │ │ └── hashicorp │ │ │ └── golang-lru │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── 2q.go │ │ │ ├── 2q_test.go │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── arc.go │ │ │ ├── arc_test.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── lru.go │ │ │ ├── lru_test.go │ │ │ ├── simplelru │ │ │ ├── lru.go │ │ │ ├── lru_interface.go │ │ │ └── lru_test.go │ │ │ └── testing.go │ │ └── golang.org │ │ └── x │ │ └── net │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── http2 │ │ └── hpack │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── hpack.go │ │ ├── hpack_test.go │ │ ├── huffman.go │ │ └── tables.go ├── git_submodule │ ├── .gitignore │ ├── .licensed.yml │ └── README ├── go │ ├── .gitignore │ ├── .licensed.yml │ └── src │ │ └── test │ │ ├── cmd │ │ └── command │ │ │ └── main.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── internal │ │ └── fakevendor │ │ │ └── github.com │ │ │ └── owner │ │ │ └── repo │ │ │ └── testpackage.go │ │ ├── pkg │ │ └── world │ │ │ └── hello.go │ │ └── test.go ├── gradle │ ├── .gitignore │ ├── .licensed.yml │ ├── multi_project │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── kotlin │ │ │ │ │ └── multi_project │ │ │ │ │ └── App.kt │ │ │ │ └── test │ │ │ │ └── kotlin │ │ │ │ └── multi_project │ │ │ │ └── AppTest.kt │ │ ├── build.gradle │ │ ├── lib │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── kotlin │ │ │ │ │ └── multi_project │ │ │ │ │ └── App.kt │ │ │ │ └── test │ │ │ │ └── kotlin │ │ │ │ └── multi_project │ │ │ │ └── AppTest.kt │ │ └── settings.gradle │ └── single_project │ │ └── build.gradle ├── manifest │ ├── .licensed.yml │ ├── generated_manifest │ │ ├── nested │ │ │ └── nested.c │ │ ├── source.c │ │ └── source.h │ ├── manifest.json │ ├── manifest.yml │ ├── multiple_license_headers │ │ ├── source.c │ │ └── source_2.c │ ├── single_license_header │ │ ├── source.c │ │ └── source_2.c │ ├── subfolder │ │ └── test_2.c │ ├── test_1.c │ ├── version │ │ └── test.c │ ├── with_license_file │ │ ├── LICENSE │ │ └── source.c │ └── with_notices │ │ ├── LEGAL │ │ └── source.c ├── migrations │ └── v2 │ │ ├── .licensed.json │ │ ├── .licensed.yml │ │ └── cache │ │ └── rubygem │ │ └── notices.txt ├── mix │ ├── .gitignore │ ├── .licensed.yml │ ├── lib │ │ └── app.ex │ ├── mix.exs │ ├── mix.lock │ └── test │ │ ├── app_test.exs │ │ └── test_helper.exs ├── npm │ ├── .gitignore │ ├── .licensed.yml │ ├── package-lock.json │ ├── package.json │ └── packages │ │ └── a │ │ └── package.json ├── nuget │ ├── .gitignore │ ├── .licensed.yml │ ├── Class1.cs │ ├── nuget.config │ └── nuget.csproj ├── pip │ ├── .gitignore │ ├── .licensed.yml │ └── requirements.txt ├── pipenv │ ├── .licensed.yml │ ├── Pipfile │ └── Pipfile.lock ├── pnpm │ ├── .gitignore │ ├── .licensed.yml │ ├── package.json │ ├── packages │ │ └── a │ │ │ └── package.json │ ├── pnpm-lock.yaml │ └── pnpm-workspace.yaml ├── swift │ ├── .gitignore │ ├── .licensed.yml │ ├── Package.resolved │ ├── Package.swift │ ├── Sources │ │ └── Fixtures │ │ │ └── Fixture.swift │ └── Tests │ │ └── FixturesTests │ │ └── FixturesTests.swift └── yarn │ ├── berry │ ├── .gitignore │ ├── .licensed.yml │ ├── .yarn │ │ └── releases │ │ │ └── yarn-3.1.1.cjs │ ├── .yarnrc.yml │ ├── package.json │ └── yarn.lock │ └── v1 │ ├── .gitignore │ ├── .licensed.yml │ ├── package.json │ └── yarn.lock ├── git_test.rb ├── migrations └── v2_test.rb ├── report_test.rb ├── reporters ├── cache_reporter_test.rb ├── json_reporter_test.rb ├── list_reporter_test.rb ├── notices_reporter_test.rb ├── reporter_test.rb ├── status_reporter_test.rb └── yaml_reporter_test.rb ├── shell_test.rb ├── sources ├── bower_test.rb ├── bundler_test.rb ├── cabal_test.rb ├── cargo_test.rb ├── cocoapods_test.rb ├── composer_test.rb ├── dep_test.rb ├── git_submodule_test.rb ├── go_test.rb ├── gradle_test.rb ├── helpers │ └── content_versioning_test.rb ├── manifest_test.rb ├── mix_test.rb ├── npm_test.rb ├── nuget_test.rb ├── pip_test.rb ├── pipenv_test.rb ├── pnpm_test.rb ├── source_test.rb ├── swift_test.rb └── yarn │ ├── berry_test.rb │ └── v1_test.rb ├── test_helper.rb └── test_helpers ├── command_test_helpers.rb ├── test_command.rb ├── test_reporter.rb ├── test_shell.rb └── test_source.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.github/workflows/licensed.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.gitignore -------------------------------------------------------------------------------- /.licensed.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licensed.test.yml -------------------------------------------------------------------------------- /.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licensed.yml -------------------------------------------------------------------------------- /.licenses/bundler/addressable.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/addressable.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/csv.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/csv.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/dotenv.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/dotenv.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/faraday-net_http.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/faraday-net_http.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/faraday.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/faraday.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/json.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/json.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/licensee.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/licensee.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/logger.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/logger.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/net-http.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/net-http.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/nokogiri.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/nokogiri.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/octokit.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/octokit.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/parallel.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/parallel.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/pathname-common_prefix.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/pathname-common_prefix.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/public_suffix.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/public_suffix.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/racc.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/racc.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/reverse_markdown.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/reverse_markdown.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/ruby-xxHash.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/ruby-xxHash.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/rugged.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/rugged.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/sawyer.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/sawyer.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/thor.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/thor.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/tomlrb.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/tomlrb.dep.yml -------------------------------------------------------------------------------- /.licenses/bundler/uri.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.licenses/bundler/uri.dep.yml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.1.7 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "go.inferGopath": false 3 | } 4 | -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/Brewfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/Rakefile -------------------------------------------------------------------------------- /docs/adding_a_new_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/adding_a_new_source.md -------------------------------------------------------------------------------- /docs/commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/commands/README.md -------------------------------------------------------------------------------- /docs/commands/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/commands/cache.md -------------------------------------------------------------------------------- /docs/commands/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/commands/env.md -------------------------------------------------------------------------------- /docs/commands/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/commands/list.md -------------------------------------------------------------------------------- /docs/commands/migrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/commands/migrate.md -------------------------------------------------------------------------------- /docs/commands/notices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/commands/notices.md -------------------------------------------------------------------------------- /docs/commands/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/commands/status.md -------------------------------------------------------------------------------- /docs/commands/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/commands/version.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/configuration/README.md -------------------------------------------------------------------------------- /docs/configuration/additional_terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/configuration/additional_terms.md -------------------------------------------------------------------------------- /docs/configuration/allowed_licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/configuration/allowed_licenses.md -------------------------------------------------------------------------------- /docs/configuration/application_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/configuration/application_name.md -------------------------------------------------------------------------------- /docs/configuration/application_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/configuration/application_source.md -------------------------------------------------------------------------------- /docs/configuration/configuration_root.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/configuration/configuration_root.md -------------------------------------------------------------------------------- /docs/configuration/configuring_multiple_apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/configuration/configuring_multiple_apps.md -------------------------------------------------------------------------------- /docs/configuration/customizing_licensee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/configuration/customizing_licensee.md -------------------------------------------------------------------------------- /docs/configuration/dependency_source_enumerators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/configuration/dependency_source_enumerators.md -------------------------------------------------------------------------------- /docs/configuration/ignoring_dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/configuration/ignoring_dependencies.md -------------------------------------------------------------------------------- /docs/configuration/metadata_cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/configuration/metadata_cache.md -------------------------------------------------------------------------------- /docs/configuration/reviewing_dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/configuration/reviewing_dependencies.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/migrations/v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/migrations/v2.md -------------------------------------------------------------------------------- /docs/migrations/v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/migrations/v3.md -------------------------------------------------------------------------------- /docs/reporters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/reporters.md -------------------------------------------------------------------------------- /docs/sources/bower.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/bower.md -------------------------------------------------------------------------------- /docs/sources/bundler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/bundler.md -------------------------------------------------------------------------------- /docs/sources/cabal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/cabal.md -------------------------------------------------------------------------------- /docs/sources/cargo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/cargo.md -------------------------------------------------------------------------------- /docs/sources/cocoapods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/cocoapods.md -------------------------------------------------------------------------------- /docs/sources/composer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/composer.md -------------------------------------------------------------------------------- /docs/sources/dep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/dep.md -------------------------------------------------------------------------------- /docs/sources/git_submodule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/git_submodule.md -------------------------------------------------------------------------------- /docs/sources/go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/go.md -------------------------------------------------------------------------------- /docs/sources/gradle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/gradle.md -------------------------------------------------------------------------------- /docs/sources/manifests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/manifests.md -------------------------------------------------------------------------------- /docs/sources/mix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/mix.md -------------------------------------------------------------------------------- /docs/sources/npm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/npm.md -------------------------------------------------------------------------------- /docs/sources/nuget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/nuget.md -------------------------------------------------------------------------------- /docs/sources/pip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/pip.md -------------------------------------------------------------------------------- /docs/sources/pipenv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/pipenv.md -------------------------------------------------------------------------------- /docs/sources/pnpm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/pnpm.md -------------------------------------------------------------------------------- /docs/sources/stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/stack.md -------------------------------------------------------------------------------- /docs/sources/swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/swift.md -------------------------------------------------------------------------------- /docs/sources/yarn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/docs/sources/yarn.md -------------------------------------------------------------------------------- /exe/licensed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/exe/licensed -------------------------------------------------------------------------------- /lib/licensed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed.rb -------------------------------------------------------------------------------- /lib/licensed/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/cli.rb -------------------------------------------------------------------------------- /lib/licensed/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/commands.rb -------------------------------------------------------------------------------- /lib/licensed/commands/cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/commands/cache.rb -------------------------------------------------------------------------------- /lib/licensed/commands/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/commands/command.rb -------------------------------------------------------------------------------- /lib/licensed/commands/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/commands/environment.rb -------------------------------------------------------------------------------- /lib/licensed/commands/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/commands/list.rb -------------------------------------------------------------------------------- /lib/licensed/commands/notices.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/commands/notices.rb -------------------------------------------------------------------------------- /lib/licensed/commands/status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/commands/status.rb -------------------------------------------------------------------------------- /lib/licensed/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/configuration.rb -------------------------------------------------------------------------------- /lib/licensed/dependency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/dependency.rb -------------------------------------------------------------------------------- /lib/licensed/dependency_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/dependency_record.rb -------------------------------------------------------------------------------- /lib/licensed/git.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/git.rb -------------------------------------------------------------------------------- /lib/licensed/migrations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/migrations.rb -------------------------------------------------------------------------------- /lib/licensed/migrations/v2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/migrations/v2.rb -------------------------------------------------------------------------------- /lib/licensed/report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/report.rb -------------------------------------------------------------------------------- /lib/licensed/reporters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/reporters.rb -------------------------------------------------------------------------------- /lib/licensed/reporters/cache_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/reporters/cache_reporter.rb -------------------------------------------------------------------------------- /lib/licensed/reporters/json_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/reporters/json_reporter.rb -------------------------------------------------------------------------------- /lib/licensed/reporters/list_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/reporters/list_reporter.rb -------------------------------------------------------------------------------- /lib/licensed/reporters/notices_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/reporters/notices_reporter.rb -------------------------------------------------------------------------------- /lib/licensed/reporters/reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/reporters/reporter.rb -------------------------------------------------------------------------------- /lib/licensed/reporters/status_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/reporters/status_reporter.rb -------------------------------------------------------------------------------- /lib/licensed/reporters/yaml_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/reporters/yaml_reporter.rb -------------------------------------------------------------------------------- /lib/licensed/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/shell.rb -------------------------------------------------------------------------------- /lib/licensed/sources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources.rb -------------------------------------------------------------------------------- /lib/licensed/sources/bower.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/bower.rb -------------------------------------------------------------------------------- /lib/licensed/sources/bundler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/bundler.rb -------------------------------------------------------------------------------- /lib/licensed/sources/bundler/definition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/bundler/definition.rb -------------------------------------------------------------------------------- /lib/licensed/sources/bundler/missing_specification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/bundler/missing_specification.rb -------------------------------------------------------------------------------- /lib/licensed/sources/cabal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/cabal.rb -------------------------------------------------------------------------------- /lib/licensed/sources/cargo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/cargo.rb -------------------------------------------------------------------------------- /lib/licensed/sources/cocoapods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/cocoapods.rb -------------------------------------------------------------------------------- /lib/licensed/sources/composer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/composer.rb -------------------------------------------------------------------------------- /lib/licensed/sources/dep.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/dep.rb -------------------------------------------------------------------------------- /lib/licensed/sources/git_submodule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/git_submodule.rb -------------------------------------------------------------------------------- /lib/licensed/sources/go.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/go.rb -------------------------------------------------------------------------------- /lib/licensed/sources/gradle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/gradle.rb -------------------------------------------------------------------------------- /lib/licensed/sources/helpers/content_versioning.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/helpers/content_versioning.rb -------------------------------------------------------------------------------- /lib/licensed/sources/manifest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/manifest.rb -------------------------------------------------------------------------------- /lib/licensed/sources/mix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/mix.rb -------------------------------------------------------------------------------- /lib/licensed/sources/npm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/npm.rb -------------------------------------------------------------------------------- /lib/licensed/sources/nuget.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/nuget.rb -------------------------------------------------------------------------------- /lib/licensed/sources/pip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/pip.rb -------------------------------------------------------------------------------- /lib/licensed/sources/pipenv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/pipenv.rb -------------------------------------------------------------------------------- /lib/licensed/sources/pnpm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/pnpm.rb -------------------------------------------------------------------------------- /lib/licensed/sources/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/source.rb -------------------------------------------------------------------------------- /lib/licensed/sources/swift.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/swift.rb -------------------------------------------------------------------------------- /lib/licensed/sources/yarn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/yarn.rb -------------------------------------------------------------------------------- /lib/licensed/sources/yarn/berry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/yarn/berry.rb -------------------------------------------------------------------------------- /lib/licensed/sources/yarn/v1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/sources/yarn/v1.rb -------------------------------------------------------------------------------- /lib/licensed/ui/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/ui/shell.rb -------------------------------------------------------------------------------- /lib/licensed/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/lib/licensed/version.rb -------------------------------------------------------------------------------- /licensed.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/licensed.gemspec -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/cibuild -------------------------------------------------------------------------------- /script/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/console -------------------------------------------------------------------------------- /script/setup: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | bundle exec rake setup["$@"] 6 | -------------------------------------------------------------------------------- /script/source-setup/bower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/source-setup/bower -------------------------------------------------------------------------------- /script/source-setup/bundler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/source-setup/bundler -------------------------------------------------------------------------------- /script/source-setup/cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/source-setup/cabal -------------------------------------------------------------------------------- /script/source-setup/cargo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/source-setup/cargo -------------------------------------------------------------------------------- /script/source-setup/cocoapods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/source-setup/cocoapods -------------------------------------------------------------------------------- /script/source-setup/composer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/source-setup/composer -------------------------------------------------------------------------------- /script/source-setup/dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/source-setup/dep -------------------------------------------------------------------------------- /script/source-setup/git_submodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/source-setup/git_submodule -------------------------------------------------------------------------------- /script/source-setup/go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/source-setup/go -------------------------------------------------------------------------------- /script/source-setup/mix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/source-setup/mix -------------------------------------------------------------------------------- /script/source-setup/npm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/source-setup/npm -------------------------------------------------------------------------------- /script/source-setup/nuget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/source-setup/nuget -------------------------------------------------------------------------------- /script/source-setup/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/source-setup/pip -------------------------------------------------------------------------------- /script/source-setup/pipenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/source-setup/pipenv -------------------------------------------------------------------------------- /script/source-setup/pnpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/source-setup/pnpm -------------------------------------------------------------------------------- /script/source-setup/swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/source-setup/swift -------------------------------------------------------------------------------- /script/source-setup/yarn/berry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/source-setup/yarn/berry -------------------------------------------------------------------------------- /script/source-setup/yarn/v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/source-setup/yarn/v1 -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/script/test -------------------------------------------------------------------------------- /test/cli_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/cli_test.rb -------------------------------------------------------------------------------- /test/commands/cache_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/commands/cache_test.rb -------------------------------------------------------------------------------- /test/commands/command_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/commands/command_test.rb -------------------------------------------------------------------------------- /test/commands/environment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/commands/environment_test.rb -------------------------------------------------------------------------------- /test/commands/list_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/commands/list_test.rb -------------------------------------------------------------------------------- /test/commands/notices_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/commands/notices_test.rb -------------------------------------------------------------------------------- /test/commands/status_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/commands/status_test.rb -------------------------------------------------------------------------------- /test/configuration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/configuration_test.rb -------------------------------------------------------------------------------- /test/dependency_record_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/dependency_record_test.rb -------------------------------------------------------------------------------- /test/dependency_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/dependency_test.rb -------------------------------------------------------------------------------- /test/fixtures/bower/.gitignore: -------------------------------------------------------------------------------- 1 | /bower_components/ 2 | -------------------------------------------------------------------------------- /test/fixtures/bower/.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/bower/.licensed.yml -------------------------------------------------------------------------------- /test/fixtures/bower/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/bower/bower.json -------------------------------------------------------------------------------- /test/fixtures/bundler/.gitignore: -------------------------------------------------------------------------------- 1 | /.bundle/ 2 | /vendor/ 3 | Gemfile.lock 4 | -------------------------------------------------------------------------------- /test/fixtures/bundler/.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/bundler/.licensed.yml -------------------------------------------------------------------------------- /test/fixtures/bundler/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/bundler/Gemfile -------------------------------------------------------------------------------- /test/fixtures/bundler/pathed-gem-fixture/fixture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/bundler/pathed-gem-fixture/fixture.rb -------------------------------------------------------------------------------- /test/fixtures/bundler/pathed-gem-fixture/pathed-gem-fixture.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/bundler/pathed-gem-fixture/pathed-gem-fixture.gemspec -------------------------------------------------------------------------------- /test/fixtures/cabal/.gitignore: -------------------------------------------------------------------------------- 1 | /dist*/ 2 | /.ghc* 3 | -------------------------------------------------------------------------------- /test/fixtures/cabal/.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/cabal/.licensed.yml -------------------------------------------------------------------------------- /test/fixtures/cabal/app.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/cabal/app.cabal -------------------------------------------------------------------------------- /test/fixtures/cabal/app/Main.hs: -------------------------------------------------------------------------------- 1 | main = putStrLn "Hello world" 2 | -------------------------------------------------------------------------------- /test/fixtures/cargo/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /test/fixtures/cargo/.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/cargo/.licensed.yml -------------------------------------------------------------------------------- /test/fixtures/cargo/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/cargo/Cargo.lock -------------------------------------------------------------------------------- /test/fixtures/cargo/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/cargo/Cargo.toml -------------------------------------------------------------------------------- /test/fixtures/cargo/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/cli/.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/cli/.licensed.yml -------------------------------------------------------------------------------- /test/fixtures/cocoapods/.gitignore: -------------------------------------------------------------------------------- 1 | /Pods/ 2 | /vendor/ 3 | /.bundle/ 4 | -------------------------------------------------------------------------------- /test/fixtures/cocoapods/.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/cocoapods/.licensed.yml -------------------------------------------------------------------------------- /test/fixtures/cocoapods/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/cocoapods/Gemfile -------------------------------------------------------------------------------- /test/fixtures/cocoapods/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/cocoapods/Gemfile.lock -------------------------------------------------------------------------------- /test/fixtures/cocoapods/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/cocoapods/Podfile -------------------------------------------------------------------------------- /test/fixtures/cocoapods/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/cocoapods/Podfile.lock -------------------------------------------------------------------------------- /test/fixtures/cocoapods/ios.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/cocoapods/ios.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test/fixtures/cocoapods/ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/cocoapods/ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /test/fixtures/cocoapods/ios.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/cocoapods/ios.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /test/fixtures/cocoapods/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/cocoapods/project.yml -------------------------------------------------------------------------------- /test/fixtures/composer/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /test/fixtures/composer/.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/composer/.licensed.yml -------------------------------------------------------------------------------- /test/fixtures/composer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/composer/composer.json -------------------------------------------------------------------------------- /test/fixtures/composer/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/composer/composer.lock -------------------------------------------------------------------------------- /test/fixtures/config/.licensed.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "licensed-json" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/config/.licensed.unknown: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/config/.licensed.yml: -------------------------------------------------------------------------------- 1 | name: licensed-yml 2 | -------------------------------------------------------------------------------- /test/fixtures/config/config.yml: -------------------------------------------------------------------------------- 1 | name: config-yml 2 | -------------------------------------------------------------------------------- /test/fixtures/config/root.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/config/root.yml -------------------------------------------------------------------------------- /test/fixtures/config/root_at_configuration.yml: -------------------------------------------------------------------------------- 1 | name: licensed 2 | root: true # configuration file directory 3 | -------------------------------------------------------------------------------- /test/fixtures/dep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/.gitignore -------------------------------------------------------------------------------- /test/fixtures/dep/.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/.licensed.yml -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/Gopkg.lock -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/Gopkg.toml -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/LICENSE -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/cmd/command/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/cmd/command/main.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/internal/fakevendor/github.com/owner/repo/testpackage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/internal/fakevendor/github.com/owner/repo/testpackage.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/pkg/world/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/pkg/world/hello.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/test.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/common_test.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/dump_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/dump_test.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/dumpcgo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/dumpcgo_test.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/dumpnocgo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/dumpnocgo_test.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/example_test.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/format_test.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/internal_test.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/internalunsafe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/internalunsafe_test.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/spew_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/davecgh/go-spew/spew/spew_test.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/gorilla/context/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/gorilla/context/.travis.yml -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/gorilla/context/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/gorilla/context/LICENSE -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/gorilla/context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/gorilla/context/README.md -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/gorilla/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/gorilla/context/context.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/gorilla/context/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/gorilla/context/context_test.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/gorilla/context/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/gorilla/context/doc.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/.gitignore -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/.golangci.yml -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/2q.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/2q.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/2q_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/2q_test.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/LICENSE -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/README.md -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/arc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/arc.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/arc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/arc_test.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/doc.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/hashicorp/golang-lru 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/lru.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/lru_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/lru_test.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/simplelru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/simplelru/lru.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/simplelru/lru_interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/simplelru/lru_interface.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/simplelru/lru_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/simplelru/lru_test.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/github.com/hashicorp/golang-lru/testing.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/golang.org/x/net/http2/hpack/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/golang.org/x/net/http2/hpack/encode.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/golang.org/x/net/http2/hpack/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/golang.org/x/net/http2/hpack/encode_test.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/golang.org/x/net/http2/hpack/hpack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/golang.org/x/net/http2/hpack/hpack_test.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/golang.org/x/net/http2/hpack/huffman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/golang.org/x/net/http2/hpack/huffman.go -------------------------------------------------------------------------------- /test/fixtures/dep/src/test/vendor/golang.org/x/net/http2/hpack/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/dep/src/test/vendor/golang.org/x/net/http2/hpack/tables.go -------------------------------------------------------------------------------- /test/fixtures/git_submodule/.gitignore: -------------------------------------------------------------------------------- 1 | /*/ 2 | 3 | -------------------------------------------------------------------------------- /test/fixtures/git_submodule/.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/git_submodule/.licensed.yml -------------------------------------------------------------------------------- /test/fixtures/git_submodule/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/git_submodule/README -------------------------------------------------------------------------------- /test/fixtures/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/go/.gitignore -------------------------------------------------------------------------------- /test/fixtures/go/.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/go/.licensed.yml -------------------------------------------------------------------------------- /test/fixtures/go/src/test/cmd/command/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/go/src/test/cmd/command/main.go -------------------------------------------------------------------------------- /test/fixtures/go/src/test/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/go/src/test/go.mod -------------------------------------------------------------------------------- /test/fixtures/go/src/test/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/go/src/test/go.sum -------------------------------------------------------------------------------- /test/fixtures/go/src/test/internal/fakevendor/github.com/owner/repo/testpackage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/go/src/test/internal/fakevendor/github.com/owner/repo/testpackage.go -------------------------------------------------------------------------------- /test/fixtures/go/src/test/pkg/world/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/go/src/test/pkg/world/hello.go -------------------------------------------------------------------------------- /test/fixtures/go/src/test/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/go/src/test/test.go -------------------------------------------------------------------------------- /test/fixtures/gradle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/gradle/.gitignore -------------------------------------------------------------------------------- /test/fixtures/gradle/.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/gradle/.licensed.yml -------------------------------------------------------------------------------- /test/fixtures/gradle/multi_project/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/gradle/multi_project/app/build.gradle -------------------------------------------------------------------------------- /test/fixtures/gradle/multi_project/app/src/main/kotlin/multi_project/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/gradle/multi_project/app/src/main/kotlin/multi_project/App.kt -------------------------------------------------------------------------------- /test/fixtures/gradle/multi_project/app/src/test/kotlin/multi_project/AppTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/gradle/multi_project/app/src/test/kotlin/multi_project/AppTest.kt -------------------------------------------------------------------------------- /test/fixtures/gradle/multi_project/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/gradle/multi_project/build.gradle -------------------------------------------------------------------------------- /test/fixtures/gradle/multi_project/lib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/gradle/multi_project/lib/build.gradle -------------------------------------------------------------------------------- /test/fixtures/gradle/multi_project/lib/src/main/kotlin/multi_project/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/gradle/multi_project/lib/src/main/kotlin/multi_project/App.kt -------------------------------------------------------------------------------- /test/fixtures/gradle/multi_project/lib/src/test/kotlin/multi_project/AppTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/gradle/multi_project/lib/src/test/kotlin/multi_project/AppTest.kt -------------------------------------------------------------------------------- /test/fixtures/gradle/multi_project/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/gradle/multi_project/settings.gradle -------------------------------------------------------------------------------- /test/fixtures/gradle/single_project/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/gradle/single_project/build.gradle -------------------------------------------------------------------------------- /test/fixtures/manifest/.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/manifest/.licensed.yml -------------------------------------------------------------------------------- /test/fixtures/manifest/generated_manifest/nested/nested.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/manifest/generated_manifest/nested/nested.c -------------------------------------------------------------------------------- /test/fixtures/manifest/generated_manifest/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/manifest/generated_manifest/source.c -------------------------------------------------------------------------------- /test/fixtures/manifest/generated_manifest/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/manifest/generated_manifest/source.h -------------------------------------------------------------------------------- /test/fixtures/manifest/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/manifest/manifest.json -------------------------------------------------------------------------------- /test/fixtures/manifest/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/manifest/manifest.yml -------------------------------------------------------------------------------- /test/fixtures/manifest/multiple_license_headers/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/manifest/multiple_license_headers/source.c -------------------------------------------------------------------------------- /test/fixtures/manifest/multiple_license_headers/source_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/manifest/multiple_license_headers/source_2.c -------------------------------------------------------------------------------- /test/fixtures/manifest/single_license_header/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/manifest/single_license_header/source.c -------------------------------------------------------------------------------- /test/fixtures/manifest/single_license_header/source_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/manifest/single_license_header/source_2.c -------------------------------------------------------------------------------- /test/fixtures/manifest/subfolder/test_2.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | printf("I'm a test!"); 6 | } 7 | -------------------------------------------------------------------------------- /test/fixtures/manifest/test_1.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | printf("I'm a test!"); 6 | } 7 | -------------------------------------------------------------------------------- /test/fixtures/manifest/version/test.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | printf("I'm a test!"); 6 | } 7 | -------------------------------------------------------------------------------- /test/fixtures/manifest/with_license_file/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/manifest/with_license_file/LICENSE -------------------------------------------------------------------------------- /test/fixtures/manifest/with_license_file/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/manifest/with_license_file/source.c -------------------------------------------------------------------------------- /test/fixtures/manifest/with_notices/LEGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/manifest/with_notices/LEGAL -------------------------------------------------------------------------------- /test/fixtures/manifest/with_notices/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/manifest/with_notices/source.c -------------------------------------------------------------------------------- /test/fixtures/migrations/v2/.licensed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/migrations/v2/.licensed.json -------------------------------------------------------------------------------- /test/fixtures/migrations/v2/.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/migrations/v2/.licensed.yml -------------------------------------------------------------------------------- /test/fixtures/migrations/v2/cache/rubygem/notices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/migrations/v2/cache/rubygem/notices.txt -------------------------------------------------------------------------------- /test/fixtures/mix/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/mix/.gitignore -------------------------------------------------------------------------------- /test/fixtures/mix/.licensed.yml: -------------------------------------------------------------------------------- 1 | expected_dependency: phoenix 2 | root: . 3 | sources: 4 | mix: true 5 | -------------------------------------------------------------------------------- /test/fixtures/mix/lib/app.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/mix/lib/app.ex -------------------------------------------------------------------------------- /test/fixtures/mix/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/mix/mix.exs -------------------------------------------------------------------------------- /test/fixtures/mix/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/mix/mix.lock -------------------------------------------------------------------------------- /test/fixtures/mix/test/app_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/mix/test/app_test.exs -------------------------------------------------------------------------------- /test/fixtures/mix/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /test/fixtures/npm/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /test/fixtures/npm/.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/npm/.licensed.yml -------------------------------------------------------------------------------- /test/fixtures/npm/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/npm/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/npm/package.json -------------------------------------------------------------------------------- /test/fixtures/npm/packages/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/npm/packages/a/package.json -------------------------------------------------------------------------------- /test/fixtures/nuget/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /obj/ 3 | -------------------------------------------------------------------------------- /test/fixtures/nuget/.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/nuget/.licensed.yml -------------------------------------------------------------------------------- /test/fixtures/nuget/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/nuget/Class1.cs -------------------------------------------------------------------------------- /test/fixtures/nuget/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/nuget/nuget.config -------------------------------------------------------------------------------- /test/fixtures/nuget/nuget.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/nuget/nuget.csproj -------------------------------------------------------------------------------- /test/fixtures/pip/.gitignore: -------------------------------------------------------------------------------- 1 | /venv/ 2 | -------------------------------------------------------------------------------- /test/fixtures/pip/.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/pip/.licensed.yml -------------------------------------------------------------------------------- /test/fixtures/pip/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/pip/requirements.txt -------------------------------------------------------------------------------- /test/fixtures/pipenv/.licensed.yml: -------------------------------------------------------------------------------- 1 | expected_dependency: pylint 2 | root: . 3 | sources: 4 | pipenv: true 5 | -------------------------------------------------------------------------------- /test/fixtures/pipenv/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/pipenv/Pipfile -------------------------------------------------------------------------------- /test/fixtures/pipenv/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/pipenv/Pipfile.lock -------------------------------------------------------------------------------- /test/fixtures/pnpm/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /test/fixtures/pnpm/.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/pnpm/.licensed.yml -------------------------------------------------------------------------------- /test/fixtures/pnpm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/pnpm/package.json -------------------------------------------------------------------------------- /test/fixtures/pnpm/packages/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/pnpm/packages/a/package.json -------------------------------------------------------------------------------- /test/fixtures/pnpm/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/pnpm/pnpm-lock.yaml -------------------------------------------------------------------------------- /test/fixtures/pnpm/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/pnpm/pnpm-workspace.yaml -------------------------------------------------------------------------------- /test/fixtures/swift/.gitignore: -------------------------------------------------------------------------------- 1 | .build 2 | -------------------------------------------------------------------------------- /test/fixtures/swift/.licensed.yml: -------------------------------------------------------------------------------- 1 | expected_dependency: DeckOfPlayingCards 2 | root: . 3 | sources: 4 | swift: true 5 | -------------------------------------------------------------------------------- /test/fixtures/swift/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/swift/Package.resolved -------------------------------------------------------------------------------- /test/fixtures/swift/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/swift/Package.swift -------------------------------------------------------------------------------- /test/fixtures/swift/Sources/Fixtures/Fixture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/swift/Sources/Fixtures/Fixture.swift -------------------------------------------------------------------------------- /test/fixtures/swift/Tests/FixturesTests/FixturesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/swift/Tests/FixturesTests/FixturesTests.swift -------------------------------------------------------------------------------- /test/fixtures/yarn/berry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/yarn/berry/.gitignore -------------------------------------------------------------------------------- /test/fixtures/yarn/berry/.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/yarn/berry/.licensed.yml -------------------------------------------------------------------------------- /test/fixtures/yarn/berry/.yarn/releases/yarn-3.1.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/yarn/berry/.yarn/releases/yarn-3.1.1.cjs -------------------------------------------------------------------------------- /test/fixtures/yarn/berry/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/yarn/berry/.yarnrc.yml -------------------------------------------------------------------------------- /test/fixtures/yarn/berry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/yarn/berry/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn/berry/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/yarn/berry/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/yarn/v1/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /test/fixtures/yarn/v1/.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/yarn/v1/.licensed.yml -------------------------------------------------------------------------------- /test/fixtures/yarn/v1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/yarn/v1/package.json -------------------------------------------------------------------------------- /test/fixtures/yarn/v1/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/fixtures/yarn/v1/yarn.lock -------------------------------------------------------------------------------- /test/git_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/git_test.rb -------------------------------------------------------------------------------- /test/migrations/v2_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/migrations/v2_test.rb -------------------------------------------------------------------------------- /test/report_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/report_test.rb -------------------------------------------------------------------------------- /test/reporters/cache_reporter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/reporters/cache_reporter_test.rb -------------------------------------------------------------------------------- /test/reporters/json_reporter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/reporters/json_reporter_test.rb -------------------------------------------------------------------------------- /test/reporters/list_reporter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/reporters/list_reporter_test.rb -------------------------------------------------------------------------------- /test/reporters/notices_reporter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/reporters/notices_reporter_test.rb -------------------------------------------------------------------------------- /test/reporters/reporter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/reporters/reporter_test.rb -------------------------------------------------------------------------------- /test/reporters/status_reporter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/reporters/status_reporter_test.rb -------------------------------------------------------------------------------- /test/reporters/yaml_reporter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/reporters/yaml_reporter_test.rb -------------------------------------------------------------------------------- /test/shell_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/shell_test.rb -------------------------------------------------------------------------------- /test/sources/bower_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/bower_test.rb -------------------------------------------------------------------------------- /test/sources/bundler_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/bundler_test.rb -------------------------------------------------------------------------------- /test/sources/cabal_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/cabal_test.rb -------------------------------------------------------------------------------- /test/sources/cargo_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/cargo_test.rb -------------------------------------------------------------------------------- /test/sources/cocoapods_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/cocoapods_test.rb -------------------------------------------------------------------------------- /test/sources/composer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/composer_test.rb -------------------------------------------------------------------------------- /test/sources/dep_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/dep_test.rb -------------------------------------------------------------------------------- /test/sources/git_submodule_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/git_submodule_test.rb -------------------------------------------------------------------------------- /test/sources/go_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/go_test.rb -------------------------------------------------------------------------------- /test/sources/gradle_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/gradle_test.rb -------------------------------------------------------------------------------- /test/sources/helpers/content_versioning_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/helpers/content_versioning_test.rb -------------------------------------------------------------------------------- /test/sources/manifest_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/manifest_test.rb -------------------------------------------------------------------------------- /test/sources/mix_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/mix_test.rb -------------------------------------------------------------------------------- /test/sources/npm_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/npm_test.rb -------------------------------------------------------------------------------- /test/sources/nuget_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/nuget_test.rb -------------------------------------------------------------------------------- /test/sources/pip_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/pip_test.rb -------------------------------------------------------------------------------- /test/sources/pipenv_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/pipenv_test.rb -------------------------------------------------------------------------------- /test/sources/pnpm_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/pnpm_test.rb -------------------------------------------------------------------------------- /test/sources/source_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/source_test.rb -------------------------------------------------------------------------------- /test/sources/swift_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/swift_test.rb -------------------------------------------------------------------------------- /test/sources/yarn/berry_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/yarn/berry_test.rb -------------------------------------------------------------------------------- /test/sources/yarn/v1_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/sources/yarn/v1_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/test_helpers/command_test_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/test_helpers/command_test_helpers.rb -------------------------------------------------------------------------------- /test/test_helpers/test_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/test_helpers/test_command.rb -------------------------------------------------------------------------------- /test/test_helpers/test_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/test_helpers/test_reporter.rb -------------------------------------------------------------------------------- /test/test_helpers/test_shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/test_helpers/test_shell.rb -------------------------------------------------------------------------------- /test/test_helpers/test_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licensee/licensed/HEAD/test/test_helpers/test_source.rb --------------------------------------------------------------------------------