-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates podfile scans to handle double quotes (#379)
- Loading branch information
1 parent
337f695
commit 801ba52
Showing
5 changed files
with
91 additions
and
5 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
examples/code-scanning/test-requirements-txt/nested-cocoapods-2/Podfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
platform :ios, "14.0" | ||
use_frameworks! | ||
inhibit_all_warnings! | ||
target "Acme" do | ||
|
||
# Raizlabs | ||
pod 'RZVinyl', :git =>'[email protected]:test/acme-RZVinyl.git' | ||
pod 'RZTransitions', '1.2.1' | ||
# Acme | ||
pod 'SDWebImage', :git =>'[email protected]:test/acme-SDWebImage.git', :commit => 'c224e87' | ||
|
||
# Code Analysis | ||
pod 'SwiftLint' | ||
target 'AcmeTests' do | ||
inherit! :search_paths | ||
pod 'RZVinyl', :git =>'[email protected]:test/acme-RZVinyl.git' | ||
# For UI Snapshot Testing | ||
use_frameworks! | ||
pod 'iOSSnapshotTestCase', '6.2.0' | ||
pod 'SnapshotTesting', '~> 1.8.1' | ||
end | ||
|
||
target 'NotificationServiceExtension' do | ||
inherit! :search_paths | ||
end | ||
|
||
post_install do |installer| | ||
installer.pods_project.targets.each do |target| | ||
|
||
target.build_configurations.each do |config| | ||
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = "" | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters