Codebase list pipal / 25225e04-2a77-4550-bbad-7e025fdf45bd/main base_checker.rb
25225e04-2a77-4550-bbad-7e025fdf45bd/main

Tree @25225e04-2a77-4550-bbad-7e025fdf45bd/main (Download .tar.gz)

base_checker.rb @25225e04-2a77-4550-bbad-7e025fdf45bd/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