Sha256: 342bdc487fead909854a1182fe5ba93d3e8f375f7c7e2f208e729c8f05e04337

Contents?: true

Size: 303 Bytes

Versions: 23

Compression:

Stored size: 303 Bytes

Contents

# Smelly class for testing purposes
#
# Not necessary for the feature per se but for
# removing distracting output. :reek:UnusedPrivateMethod
#
class Klass
  def public_method(arg) arg.to_s; end
  protected
  def protected_method(arg) arg.to_s; end
  private
  def private_method(arg) arg.to_s; end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
reek-4.3.0 samples/smelly_with_modifiers.rb
reek-4.2.5 samples/smelly_with_modifiers.rb
reek-4.2.4 samples/smelly_with_modifiers.rb