[Source]
# File lib/nitpick/warnings/simple_warning.rb, line 4 def self.discover(args = []) warning = new(*args) warning if warning.matches? end
# File lib/nitpick/warnings/simple_warning.rb, line 13 def ==(other) other.is_a? self.class end
# File lib/nitpick/warnings/simple_warning.rb, line 9 def matches? false end
# File lib/nitpick/warnings/simple_warning.rb, line 17 def message raise NotImplementedError end
[Validate]