class Xezat::Detector::Automake
Public Instance Methods
detect(variables)
click to toggle source
# File lib/xezat/detector/automake.rb, line 8 def detect(variables) Find.find(variables[:S]) do |file| return true if file.end_with?('.am') end false end