forked from SomeRandomiOSDev/CBORCoding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CBORCoding.podspec
27 lines (21 loc) · 1.03 KB
/
CBORCoding.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Pod::Spec.new do |s|
s.name = "CBORCoding"
s.version = "1.4.0"
s.summary = "A CBOR Encoder and Decoder"
s.description = <<-DESC
A lightweight framework containing a coder pair for encoding and decoding `Codable` conforming types to and from CBOR document format for iOS, macOS, tvOS, and watchOS.
DESC
s.homepage = "https://github.com/SomeRandomiOSDev/CBORCoding"
s.license = "MIT"
s.author = { "Joe Newton" => "[email protected]" }
s.source = { :git => "https://github.com/SomeRandomiOSDev/CBORCoding.git", :tag => s.version.to_s }
s.ios.deployment_target = '12.0'
s.macos.deployment_target = '10.13'
s.tvos.deployment_target = '12.0'
s.watchos.deployment_target = '4.0'
s.source = { :git => "https://github.com/SomeRandomiOSDev/CBORCoding.git", :tag => s.version.to_s }
s.source_files = 'Sources/**/*.swift'
s.swift_versions = ['5.0']
s.cocoapods_version = '>= 1.7.3'
s.dependency 'Half', '~> 1.4'
end