class Fastlane::Helper::XcodeprojHelper

Constants

DEPENDENCY_MANAGER_DIRS

Public Class Methods

find(dir) click to toggle source
# File fastlane/lib/fastlane/helper/xcodeproj_helper.rb, line 6
def self.find(dir)
  xcodeproj_paths = Dir[File.expand_path(File.join(dir, '**/*.xcodeproj'))]
  xcodeproj_paths.reject { |path| %r{/(#{DEPENDENCY_MANAGER_DIRS.join('|')})/.*.xcodeproj} =~ path }
end