Class: Xezat::Detector::Ninja

Inherits:
Object
  • Object
show all
Defined in:
lib/xezat/detector/ninja.rb

Instance Method Summary collapse

Instance Method Details

#detect(variables) ⇒ Object



6
7
8
9
10
11
# File 'lib/xezat/detector/ninja.rb', line 6

def detect(variables)
  Find.find(variables[:B]) do |file|
    return true if file.end_with?(File::SEPARATOR + 'build.ninja')
  end
  false
end