-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is a major refactor of License Scout that modifies it's operating model to drive more configuration from external configuration managed by YAML files rather than by configuration stored within the gem itself. This allows teams to add exceptions, fallbacks, and other configuration based on their needs without requiring us to release a new version of the license_scout gem. Signed-off-by: Tom Duffield <[email protected]>
- Loading branch information
Showing
273 changed files
with
25,380 additions
and
8,879 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ | |
/tmp/ | ||
/spec/examples.txt | ||
/license-cache/ | ||
*-dependency-licenses.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
AllCops: | ||
TargetRubyVersion: 2.2 | ||
Excludes: | ||
- spec/fixtures/**/* | ||
Exclude: | ||
- 'bundle/**/*' | ||
- 'vendor/bundle/**/*' | ||
- 'spec/fixtures/**/*' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.5.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
language: ruby | ||
sudo: false | ||
|
||
cache: bundler | ||
|
||
# do not run expensive spec tests on PRs, only on branches | ||
branches: | ||
only: | ||
- master | ||
|
||
before_install: gem install bundler | ||
rvm: | ||
- 2.2.6 | ||
before_install: | ||
- source $HOME/otp/19.3/activate | ||
- erl -eval 'erlang:display(erlang:system_info(otp_release)), halt().' -noshell | ||
- gem install bundler |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,5 @@ | |
|
||
module LicenseScout | ||
end | ||
|
||
require "license_scout/cli" |
Oops, something went wrong.