Method: VMC::Detector#runtimes

Defined in:
lib/vmc/detect.rb

#runtimes(framework) ⇒ Object

determine runtimes for a given framework based on the language its detector reports itself as



55
56
57
58
59
60
61
# File 'lib/vmc/detect.rb', line 55

def runtimes(framework)
  if detector = detectors[framework]
    runtimes_for(detector.language_name)
  else
    []
  end
end