lib/processor.rb in brakeman-0.5.1 vs lib/processor.rb in brakeman-0.5.2
- old
+ new
@@ -1,8 +1,9 @@
#Load all files in processors/
Dir.glob("#{File.expand_path(File.dirname(__FILE__))}/processors/*.rb").each { |f| require f.match(/processors.*/)[0] }
require 'tracker'
require 'set'
+require 'pathname'
#Makes calls to the appropriate processor.
#
#The ControllerProcessor, TemplateProcessor, and ModelProcessor will
#update the Tracker with information about what is parsed.