class Fastlane::Setup

def detect_installed_tools

def detect_installed_tools
  @tools = {}
  @tools[:deliver] = File.exist?(File.join(folder, 'Deliverfile'))
  @tools[:snapshot] = File.exist?(File.join(folder, 'Snapfile'))
  @tools[:xctool] = File.exist?(File.join(File.expand_path('..', folder), '.xctool-args'))
  @tools[:cocoapods] = File.exist?(File.join(File.expand_path('..', folder), 'Podfile'))
  @tools[:carthage] = File.exist?(File.join(File.expand_path('..', folder), 'Cartfile'))
  @tools[:sigh] = false
end