-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCDUntappdKit.podspec
More file actions
23 lines (19 loc) · 844 Bytes
/
CDUntappdKit.podspec
File metadata and controls
23 lines (19 loc) · 844 Bytes
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 = 'CDUntappdKit'
s.version = '1.0.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'An extensive Swift wrapper for the Untappd API.'
s.description = <<-DESC
This Swift wrapper covers all possible network endpoints and responses for the Untappd API.
DESC
s.homepage = 'https://github.com/chrisdhaan/CDUntappdKit'
s.author = { 'Christopher de Haan' => 'contact@christopherdehaan.me' }
s.source = { :git => 'https://github.com/chrisdhaan/CDUntappdKit.git', :tag => s.version.to_s }
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.3', '5.4', '5.5']
s.source_files = 'Source/*.swift'
s.dependency 'Alamofire', '5.6.1'
end