Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chore]: adapter for Swift 5.9 #76

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
27 changes: 24 additions & 3 deletions Podfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,30 @@
# Uncomment this line to define a global platform for your project
platform :ios, '9.0'
# Uncomment this line if you're using Swift
source 'https://cdn.cocoapods.org/'
platform :ios, '15.0'
inhibit_all_warnings!
install! 'cocoapods',
:warn_for_unused_master_specs_repo => false
use_frameworks!

target 'PokemonController' do
pod 'GCDWebServer'
pod 'GCDWebServer'
end

post_install do |installer|

installer.pods_project.targets.each do |target|
target.build_configurations.each do |configuration|
configuration.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
configuration.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
configuration.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
configuration.build_settings['SWIFT_VERSION'] = "5.9"
configuration.build_settings['ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES'] = 'NO'
configuration.build_settings['ENABLE_BITCODE'] = 'NO'
if ( configuration.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 15.0 )
configuration.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
end
end


end
end
8 changes: 6 additions & 2 deletions Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ PODS:
DEPENDENCIES:
- GCDWebServer

SPEC REPOS:
trunk:
- GCDWebServer

SPEC CHECKSUMS:
GCDWebServer: 2a375ec42839a41d7187d04e5b688d32fa5c4cd5

PODFILE CHECKSUM: 38b2228a45b9b61aee2f2f7dbbafcf4c2c15eff3
PODFILE CHECKSUM: 20847950515495bed813868c5234140690f30bef

COCOAPODS: 1.0.0.beta.8
COCOAPODS: 1.13.0
8 changes: 6 additions & 2 deletions Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

783 changes: 441 additions & 342 deletions Pods/Pods.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions Pods/Target Support Files/GCDWebServer/GCDWebServer-Info.plist

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions Pods/Target Support Files/GCDWebServer/GCDWebServer-umbrella.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions Pods/Target Support Files/GCDWebServer/GCDWebServer.debug.xcconfig

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading