-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathByteBackpacker.podspec
32 lines (27 loc) · 1.47 KB
/
ByteBackpacker.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
28
29
30
31
32
#
# Be sure to run `pod spec lint ByteBackpacker.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "ByteBackpacker"
s.version = "1.2.2"
s.summary = "ByteBackpacker is a small utility written in pure Swift to pack value types into a Byte array and unpack them back."
s.description = <<-DESC
ByteBackpacker is a small utility written in pure Swift to pack value types into a Byte array and unpack them back. Additionally, there is a Data (formerly NSData) extension to convert Data objects into a Byte array. Byte is a typealias for UInt8.
DESC
s.homepage = "https://github.com/michaeldorner/ByteBackpacker"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Michael Dorner" => "mail@michaeldorner.de" }
s.source = { :git => "https://github.com/michaeldorner/ByteBackpacker.git", :tag => s.version.to_s }
s.ios.deployment_target = "13.1"
s.osx.deployment_target = "10.15"
s.watchos.deployment_target = "6.0"
s.tvos.deployment_target = "13.1"
s.swift_version = '5.0'
s.requires_arc = true
s.source_files = "Sources/ByteBackpacker.swift"
#s.public_header_files = "Sources/ByteBackpacker.h"
end