forked from mobilejazz/BlueFish
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlueFish.podspec
More file actions
14 lines (14 loc) · 753 Bytes
/
BlueFish.podspec
File metadata and controls
14 lines (14 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Pod::Spec.new do |s|
s.name = 'BlueFish'
s.version = '1.0.1'
s.summary = 'CoreBluetooth with block-based APIs'
s.description = "Simple wrapper around CoreBluetooth that replace delegate based API with block based API"
s.homepage = 'https://github.com/mobilejazz/BlueFish'
s.social_media_url = 'http://twitter.com/mobilejazzcom'
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.author = { 'Mobile Jazz' => 'info@mobilejazz.com' }
s.source = { :git => 'https://github.com/mobilejazz/BlueFish.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'BlueFish/Classes/**/*'
s.frameworks = 'CoreBluetooth'
end