-
Notifications
You must be signed in to change notification settings - Fork 8
/
SwiftyTeeth.podspec
22 lines (17 loc) · 1.04 KB
/
SwiftyTeeth.podspec
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 |s|
s.name = 'SwiftyTeeth'
s.version = '0.8.0'
s.summary = 'A simple, lightweight library intended to take away some of the cruft and tediousness of using CoreBluetooth.'
s.description = <<-DESC
A simple, lightweight library intended to take away some of the cruft and tediousness of using CoreBluetooth.
It replaces CoreBluetooth's protocols and delegates with a block-based pattern, and handles much of the code overhead associated with handling connections, discovery, reads/writes, and notifications.
DESC
s.homepage = 'https://github.com/RobotPajamas/SwiftyTeeth'
s.license = { :type => 'Apache', :file => 'LICENSE' }
s.authors = ['basememara', 'sureshjoshi']
s.source = { :git => 'https://github.com/RobotPajamas/SwiftyTeeth.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.ios.deployment_target = '13.0'
s.source_files = 'Sources/**/*'
s.frameworks = 'CoreBluetooth'
end