forked from troystribling/BlueCap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlueCapKit.podspec
More file actions
25 lines (17 loc) · 917 Bytes
/
Copy pathBlueCapKit.podspec
File metadata and controls
25 lines (17 loc) · 917 Bytes
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
Pod::Spec.new do |spec|
spec.name = "BlueCapKit"
spec.version = "0.8.0"
spec.summary = "BlueCap is Swift CoreBluetooth and much more."
spec.homepage = "https://github.com/troystribling/BlueCap"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.documentation_url = "https://github.com/troystribling/BlueCap"
spec.author = { "Troy Stribling" => "me@troystribling.com" }
spec.social_media_url = "http://twitter.com/troystribling"
#spec.platform = :ios, "12.0"
spec.cocoapods_version = '>= 1.1'
spec.source = { :git => "https://github.com/troystribling/BlueCap.git", :tag => "#{spec.version}" }
spec.source_files = "BlueCapKit/**/*.swift"
spec.frameworks = "CoreBluetooth", "CoreLocation"
spec.watchos.deployment_target = '5.0'
spec.ios.deployment_target = '10.0'
end