mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 15:25:35 +08:00
DEV: Label and ignore all default gems (#19617)
`licensed` fails to find gem's license if it's a default gem (see: https://stdgems.org) and the version you're requiring comes with the ruby version you're using. A ruby upgrade or any change to Gemfile could trigger `licensed` failures, so it's better to ignore all default gems we're using.
This commit is contained in:
parent
df11457d56
commit
60402f2b34
|
@ -13,14 +13,23 @@ allowed:
|
||||||
|
|
||||||
ignored:
|
ignored:
|
||||||
bundler:
|
bundler:
|
||||||
- openssl # Ruby terms
|
- cgi # Ruby (default gem)
|
||||||
- rchardet # Ruby terms
|
- date # Ruby (default gem)
|
||||||
- ruby2_keywords # BSD-2-Clause
|
- io-wait # Ruby (default gem)
|
||||||
|
- json # Ruby (default gem)
|
||||||
|
- net-http # Ruby (default gem)
|
||||||
|
- net-protocol # Ruby (default gem)
|
||||||
|
- openssl # Ruby (default gem)
|
||||||
|
- racc # Ruby (default gem)
|
||||||
|
- rchardet # LGPL
|
||||||
|
- ruby2_keywords # Ruby (default gem)
|
||||||
|
- strscan # Ruby (default gem)
|
||||||
|
- timeout # Ruby (default gem)
|
||||||
|
- uri # Ruby (default gem)
|
||||||
|
|
||||||
reviewed:
|
reviewed:
|
||||||
bundler:
|
bundler:
|
||||||
- activerecord # MIT
|
- activerecord # MIT
|
||||||
- cgi # Ruby
|
|
||||||
- coderay # MIT
|
- coderay # MIT
|
||||||
- concurrent-ruby # MIT
|
- concurrent-ruby # MIT
|
||||||
- css_parser # MIT
|
- css_parser # MIT
|
||||||
|
@ -32,29 +41,21 @@ reviewed:
|
||||||
- faraday-net_http # MIT
|
- faraday-net_http # MIT
|
||||||
- faraday-patron # MIT
|
- faraday-patron # MIT
|
||||||
- faraday-rack # MIT
|
- faraday-rack # MIT
|
||||||
- highline # GPL-2.0 OR Ruby terms
|
- highline # Ruby or GPL-2.0
|
||||||
- htmlentities # MIT
|
- htmlentities # MIT
|
||||||
- image_size # MIT
|
- image_size # MIT
|
||||||
- io-wait # Ruby terms
|
|
||||||
- json # Ruby terms
|
|
||||||
- jwt # MIT
|
- jwt # MIT
|
||||||
- kgio # LGPL-2.1+
|
- kgio # LGPL-2.1+
|
||||||
- logstash-event # Apache-2.0
|
- logstash-event # Apache-2.0
|
||||||
- net-http # Ruby
|
- net-imap # Ruby (bundled gem)
|
||||||
- net-imap # Ruby
|
- net-pop # Ruby (bundled gem)
|
||||||
- net-pop # Ruby
|
- net-smtp # Ruby (bundled gem)
|
||||||
- net-protocol # Ruby
|
|
||||||
- net-smtp # Ruby
|
|
||||||
- omniauth # MIT
|
- omniauth # MIT
|
||||||
- pg # Ruby terms
|
- pg # Ruby
|
||||||
- r2 # Apache-2.0 (Twitter)
|
- r2 # Apache-2.0 (Twitter)
|
||||||
- racc # Ruby terms
|
|
||||||
- raindrops # LGPL-2.1+
|
- raindrops # LGPL-2.1+
|
||||||
- rubyzip # Ruby terms
|
- rubyzip # Ruby
|
||||||
- sidekiq # LGPL (Sidekiq)
|
- sidekiq # LGPL (Sidekiq)
|
||||||
- strscan # Ruby
|
|
||||||
- tilt # MIT
|
- tilt # MIT
|
||||||
- timeout # Ruby
|
|
||||||
- unf # BSD-2-Clause
|
- unf # BSD-2-Clause
|
||||||
- unicorn # Ruby terms or GPLv2/GPLv3
|
- unicorn # Ruby or GPLv2/GPLv3
|
||||||
- uri # Ruby
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user