-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathBlueCapKit.podspec
More file actions
22 lines (15 loc) · 834 Bytes
/
BlueCapKit.podspec
File metadata and controls
22 lines (15 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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"
end