-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathQuickBLE.podspec
More file actions
28 lines (18 loc) · 825 Bytes
/
Copy pathQuickBLE.podspec
File metadata and controls
28 lines (18 loc) · 825 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
26
27
28
Pod::Spec.new do |s|
s.name = "QuickBLE"
s.version = "0.9.1"
s.summary = "A simple helper for communicating with Bluetooth LE devices (Arduino 101, etc.)"
s.description = <<-DESC
A simple helper for communicating with Bluetooth LE devices (Arduino 101, etc.) written in Swift.
DESC
s.homepage = "https://github.com/mkoehnke/QuickBLE"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = "Mathias Köhnke"
s.ios.deployment_target = '9.1'
s.osx.deployment_target = '10.11'
s.source = { :git => "https://github.com/mkoehnke/QuickBLE.git", :tag => s.version.to_s }
s.source_files = "Sources/*.{swift}"
s.exclude_files = "Sources/Exclude"
s.requires_arc = true
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0' }
end