-
Notifications
You must be signed in to change notification settings - Fork 3
/
KeiserKit.podspec
31 lines (21 loc) · 1.39 KB
/
KeiserKit.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
Pod::Spec.new do |s|
s.name = "KeiserKit"
s.version = "1.0.1"
s.summary = "Static Library for interfacing with the Keiser M3i Exercise Bike over Bluetooth Low Energy"
s.description = <<-DESC
Objective-C Library for reading data from the Keiser M3i Exercise Bike using CoreBluetooth for iOS.
This library provides scanning and bike simulation (for n bikes), through a few methods that provide all the necessary functionality to start working with the bikes.
NOTE: This library will not work in the background unfortunately. The M3i does not provide service/characteristic data and cannot be connected to, iOS only allows you to see a device's advertising data once in the background and has to search for a specific list of services/characteristics or connect to a device to get a stream of data.
DESC
s.homepage = "https://github.com/BenWoodford/KeiserKit"
s.author = { "Ben Woodford" => "[email protected]" }
s.social_media_url = "http://twitter.com/IrregularExpr"
s.platform = :ios
s.source = { :git => "https://github.com/BenWoodford/KeiserKit.git", :tag => s.version.to_s }
s.source_files = "KeiserKit", "KeiserKit/**/*.{h,m}"
s.exclude_files = "Classes/Exclude"
s.frameworks = 'QuartzCore'
s.public_header_files = "KeiserKit/**/*.h"
s.requires_arc = true
s.license = 'MIT'
end