-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
i.myakotin
committed
Apr 15, 2022
0 parents
commit 09b4b07
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
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,22 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'Alamofire' | ||
s.version = '5.0.5' | ||
s.license = 'MIT' | ||
s.summary = 'Elegant HTTP Networking in Swift' | ||
s.homepage = 'https://github.com/Alamofire/Alamofire' | ||
s.authors = { 'Alamofire Software Foundation' => 'info@alamofire.org' } | ||
# Source changed | ||
s.source = { :git => 'https://github.com/rehsals/TestSwiftRepo.git', :branch => 'main' } | ||
s.documentation_url = 'https://alamofire.github.io/Alamofire/' | ||
|
||
s.ios.deployment_target = '10.0' | ||
s.osx.deployment_target = '10.12' | ||
s.tvos.deployment_target = '10.0' | ||
s.watchos.deployment_target = '3.0' | ||
|
||
s.swift_versions = ['5.0', '5.1'] | ||
# Test file to see the difference | ||
s.source_files = 'Source/Test.swift' | ||
|
||
s.frameworks = 'CFNetwork' | ||
end |