class Xezat::Detector::Ninja

Public Instance Methods

detect(variables) click to toggle source
# File lib/xezat/detector/ninja.rb, line 8
def detect(variables)
  return true if variables.key?(:_meson_CYGCLASS_)

  Find.find(variables[:B]) do |file|
    return true if file.end_with?("#{File::SEPARATOR}build.ninja")
  end
  false
end