Searches in .nvmrc
".nvmrc".freeze
7 8 9 10 11 12 13
# File 'lib/asdf_discover/searchers/nvmrc.rb', line 7 def call return NotFound unless File.exist?(NVMRC) version = File.read(NVMRC).chomp Found.new("nodejs", version, NVMRC) end