forked from Szaq/BinarySwift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BinarySwift.podspec
34 lines (25 loc) · 1.17 KB
/
BinarySwift.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
33
34
Pod::Spec.new do |s|
s.name = "BinarySwift"
s.version = "0.9.5"
s.summary = "BinarySwift is a pure-swift library for parsing binary data."
s.description = <<-DESC
BinarySwift is a pure-swift library for parsing binary data. It contains
two components - BinaryReader which can be used to parse
binary data in non-mutating environment,
and BinaryDataReader which keeps index of last read byte and
automatically updates it.
Using this library you can read:
- UInt(8/16/32/64)
- Int(8/16/32/64)
- Float(32,64)
- Null-terminated UTF8 string
- UTF8 String of known size
DESC
s.homepage = "https://github.com/Szaq/BinarySwift.git"
s.license = { :type => 'BSD', :file => "LICENSE"}
s.author = "Łukasz Kwoska"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.source = { :git => "https://github.com/Szaq/BinarySwift.git", :tag => "v0.9.5" }
s.source_files = "Sources/BinarySwift/*.swift"
end