Sha256: 3c265e4c2a27be27d154bfcc1e37de4977a6763be6d57e903b86124a972fa837

Contents?: true

Size: 629 Bytes

Versions: 8

Compression:

Stored size: 629 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
    table.register MaxMethodArity, :int
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
skeptic-0.0.16 lib/skeptic/rules.rb
skeptic-0.0.15 lib/skeptic/rules.rb
skeptic-0.0.14 lib/skeptic/rules.rb
skeptic-0.0.12 lib/skeptic/rules.rb
skeptic-0.0.11 lib/skeptic/rules.rb
skeptic-0.0.10 lib/skeptic/rules.rb
skeptic-0.0.9 lib/skeptic/rules.rb
skeptic-0.0.8 lib/skeptic/rules.rb