Class: FindInfoPlist

Inherits:
Object
  • Object
show all
Defined in:
lib/fastlane/plugin/bugsnag/actions/find_info_plist_path.rb

Class Method Summary collapse

Class Method Details

.default_info_plist_pathObject



2
3
4
5
6
# File 'lib/fastlane/plugin/bugsnag/actions/find_info_plist_path.rb', line 2

def self.default_info_plist_path
    # Find first 'Info.plist' in the current working directory
    # ignoring any in 'build', or 'test' folders
    return Dir.glob("./{ios/,}*/Info.plist").reject{|path| path =~ /build|test/i }.sort.first
end