forked from amayers/RFduino-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRFduino-library.podspec
More file actions
18 lines (16 loc) · 848 Bytes
/
RFduino-library.podspec
File metadata and controls
18 lines (16 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "RFduino-library"
s.version = "1.0.1"
s.summary = "RFduino-library is a few classes to manage & communicate with RFduino boards over BlueTooth 4.0"
s.description = "This code provides an easy way to communicate with the RFduino boards. It originally came from https://github.com/RFduino/RFduino, but I have made a few minor changes."
s.homepage = "http://www.rfduino.com"
s.license = 'GNU LGPL 2.1'
s.author = { "RFDuino" => "rfduino.com" }
s.source = { :git => "https://github.com/amayers/RFduino-library.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.ios.deployment_target = '7.0'
s.requires_arc = true
s.source_files = 'Classes/**/*.{m,h}'
s.public_header_files = 'Classes/**/*.h'
s.frameworks = 'CoreBluetooth', 'Foundation'
end