Sha256: eceb18d3fe945ac7df9d60af4be0f789522eed0f5536fa093849edde37221953
Contents?: true
Size: 338 Bytes
Versions: 5
Compression:
Stored size: 338 Bytes
Contents
module Nitpick module Warnings class UnusedArgument < SimpleWarning attr_reader :argument def initialize(arg) @argument = arg end def ==(other) @argument == other.argument end def message "The argument #{@argument.inspect} is unused." end end end end
Version data entries
5 entries across 5 versions & 2 rubygems