# File ../../../../../lib/review/preprocessor.rb, line 80 def initialize(repo, param) @repository = repo @config = param @logger = ReVIEW.logger end
# File ../../../../../lib/review/preprocessor.rb, line 46 def self.strip(f) buf = '' Strip.new(f).each { |line| buf << line.rstrip << "\n" } buf end
# File ../../../../../lib/review/preprocessor.rb, line 86 def process(inf, outf) init_errorutils inf @f = outf begin preproc inf rescue Errno::ENOENT => err error err.message end end