lib/nanoc/cli/stream_cleaners/abstract.rb in nanoc-3.7.3 vs lib/nanoc/cli/stream_cleaners/abstract.rb in nanoc-3.7.4

- old
+ new

@@ -12,10 +12,10 @@ # Returns a cleaned version of the given string. # # @param [String] s The string to clean # # @return [String] The cleaned string - def clean(s) + def clean(_s) raise NotImplementedError, 'Subclasses of Nanoc::CLI::StreamCleaners::Abstract must implement #clean' end end