class RubyCritic::Command::Base

Public Class Methods

new(options) click to toggle source
# File lib/rubycritic/commands/base.rb, line 8
def initialize(options)
  @options = options
  @status_reporter = RubyCritic::Command::StatusReporter.new(@options)
end

Public Instance Methods

execute() click to toggle source
# File lib/rubycritic/commands/base.rb, line 13
def execute
  raise NotImplementedError
end