forked from tsolomko/BitByteData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BitByteData.podspec
31 lines (20 loc) · 911 Bytes
/
BitByteData.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
Pod::Spec.new do |s|
s.name = "BitByteData"
s.version = "1.2.0"
s.summary = "Read and write bits and bytes in Swift."
s.description = "A Swift framework with classes for reading and writing bits and bytes."
s.homepage = "https://github.com/tsolomko/BitByteData"
s.documentation_url = "http://tsolomko.github.io/BitByteData"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Timofey Solomko" => "[email protected]" }
s.source = { :git => "https://github.com/tsolomko/BitByteData.git", :tag => "#{s.version}" }
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.swift_version = "4.1"
s.source_files = "Sources/*.swift"
s.test_spec "Tests" do |test_spec|
test_spec.source_files = "Tests/BitByteDataTests/*.swift"
end
end