-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathSwiftySensors.podspec
More file actions
executable file
·28 lines (20 loc) · 1.06 KB
/
SwiftySensors.podspec
File metadata and controls
executable file
·28 lines (20 loc) · 1.06 KB
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 |spec|
spec.name = 'SwiftySensors'
spec.version = '1.1.0'
spec.summary = 'BLE Fitness Sensors Communication Utilities for iOS, macOS and tvOS'
spec.homepage = 'https://github.com/kinetic-fit/sensors-swift'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = { 'Kinetic' => 'admin@kinetic.fit' }
spec.ios.deployment_target = '8.4'
spec.osx.deployment_target = '10.13'
spec.tvos.deployment_target = '11.2'
spec.source = { :git => 'https://github.com/kinetic-fit/sensors-swift.git',
:tag => spec.version.to_s,
:submodules => true }
spec.source_files = 'Sources/**/*.swift'
spec.swift_version = '5.0'
spec.dependency 'Signals'
spec.subspec 'Serializers' do |serial|
serial.source_files = 'Sources/*Serializer.swift', 'Sources/Operators.swift'
end
end