Codebase list pipal / run/c3ae85a1-78a4-4f06-ba30-924fad8153f9/main base_checker.rb
run/c3ae85a1-78a4-4f06-ba30-924fad8153f9/main

Tree @run/c3ae85a1-78a4-4f06-ba30-924fad8153f9/main (Download .tar.gz)

base_checker.rb @run/c3ae85a1-78a4-4f06-ba30-924fad8153f9/mainraw · history · blame

class Checker
	attr_writer :cap_at
	attr_reader :description
	attr_reader :cli_params
	attr_writer :verbose

	def initialize
		@cap_at = 10
		@total_words_processed = 0
		@description = "No description given"
		@cli_params = nil
		@verbose = false
	end

	# Return any extra usage parameters added by the checker
	def usage
		return nil
	end

	def parse_params opts
	end

	def process_word (word, extras = nil)
	end

	def get_results (total_words_processed)
	end
end