class Xezat::Detector::Gnulib
Public Instance Methods
detect(variables)
click to toggle source
# File lib/xezat/detector/gnulib.rb, line 8 def detect(variables) File.foreach(File.join(variables[:top], variables[:cygportfile])) do |line| return true if line.index('gnulib-tools') end false end