-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBLEdevice.podspec
53 lines (29 loc) · 2.78 KB
/
BLEdevice.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "BLEdevice"
s.version = "0.3.0"
s.summary = "Library that eases the way to interact with Bluetooth Low Energy devices."
s.description = <<-DESC
Library that eases the way to interact with Bluetooth Low Energy devices.
DESC
s.homepage = "https://github.com/ivabra/BLEdevice-swift"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = "MIT"
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "Ivan Brazhnikov" => "[email protected]" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.13"
s.watchos.deployment_target = "4.0"
s.tvos.deployment_target = "10.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/ivabra/BLEdevice-swift.git", :commit => "1fc54e33b1bea856a305764ed7455df2414a00ac" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "BLEdevice", "BLEdevice/**/*.{h,m,swift}"
s.public_header_files = "BLEdevice/**/*.h"
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.framework = "CoreBluetooth"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.dependency "XCGLogger"
end