File: ignore-gem-warnings.rb

package info (click to toggle)
ruby-asciidoctor-pdf 2.3.19-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,972 kB
  • sloc: ruby: 44,316; sh: 133; java: 45; makefile: 4
file content (11 lines) | stat: -rw-r--r-- 166 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Warning
  module Processor
    def warn str
      super unless str.start_with?(*Gem.path)
    end
  end

  extend Processor
end