Sha256: 1875448d0b05df865e2bfbe4904a11109759b80ed2356b2c3ced986a68adfe79

Contents?: true

Size: 589 Bytes

Versions: 4

Compression:

Stored size: 589 Bytes

Contents

module Skeptic
  module Rules
    def self.table
      @rule_table ||= RuleTable.new
    end

    table.register CheckSyntax, :boolean
    table.register EnglishWordsForNames, :string
    table.register LineLength, :int
    table.register LinesPerMethod, :int
    table.register MaxNestingDepth, :int
    table.register MethodsPerClass, :int
    table.register NamingConventions, :boolean
    table.register NoSemicolons, :boolean
    table.register NoGlobalVariables, :boolean
    table.register NoTrailingWhitespace, :boolean
    table.register SpacesAroundOperators, :boolean
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
skeptic-0.0.7 lib/skeptic/rules.rb
skeptic-0.0.6 lib/skeptic/rules.rb
skeptic-0.0.5 lib/skeptic/rules.rb
skeptic-0.0.4 lib/skeptic/rules.rb