Sha256: 91888d1e36c754970de3139f70ba822c5c2192080f37bab6a966eff7e37304f6

Contents?: true

Size: 216 Bytes

Versions: 4

Compression:

Stored size: 216 Bytes

Contents

module Suspiciouss
  module Suggestions
    class Underscores

      def parse(line)
        return if line.include?(':')
        "Don't use underscores when naming classes" if line =~ /_/
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
suspiciouss-0.1.4 lib/suspiciouss/suggestions/underscores.rb
suspiciouss-0.1.3 lib/suspiciouss/suggestions/underscores.rb
suspiciouss-0.1.2 lib/suspiciouss/suggestions/underscores.rb
suspiciouss-0.1.1 lib/suspiciouss/suggestions/underscores.rb