-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCurlDSL.podspec
23 lines (21 loc) · 984 Bytes
/
CurlDSL.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'CurlDSL'
s.version = '0.0.5'
s.summary = 'CurlDSL converts cURL commands into `URLRequest` objects.'
s.description = <<-DESC
CurlDSL converts cURL commands into `URLRequest` objects. The Swift package
helps you to build HTTP clients in your iOS/macOS/tvOS easier, once you have a
cURL command example for a Web API endpoint.
DESC
s.homepage = 'https://github.com/zonble/CurlDSL'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'zonble' => '[email protected]' }
s.source = { :git => 'https://github.com/zonble/CurlDSL.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/zonble'
s.swift_versions = [5.0, 5.1]
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '6.0'
s.source_files = 'Sources/CurlDSL/**/*'
end