forked from particle-iot/spark-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpark-SDK.podspec
48 lines (41 loc) · 2.1 KB
/
Spark-SDK.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#
# Be sure to run `pod lib lint Spark-SDK.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "Spark-SDK"
s.version = "0.3.2"
s.summary = "Particle iOS Cloud SDK for interacting with products/project powered by Cores/Photons via Particle Cloud"
s.description = <<-DESC
Particle (formerly Spark) iOS Cloud SDK Cocoapod library
The Particle iOS Cloud SDK enables iOS apps to interact with Particle-powered connected products via the Particle Cloud.
Library will allow you to easily manage active user sessions to Particle cloud, query for device info,
read and write data to/from Spark Core/Photon devices and (via exposed variables and functions)
publish and subscribe events to/from the cloud or to/from devices (coming soon).
notice: Spark has been rebranded as Particle
DESC
s.homepage = "https://github.com/spark/spark-sdk-ios"
s.screenshots = "http://i59.tinypic.com/mrthqc.jpg"
s.license = 'Apache 2.0'
s.author = { "Particle" => "[email protected]" }
s.source = { :git => "https://github.com/spark/Spark-SDK-ios.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/particle'
s.platform = :ios, '7.0'
s.requires_arc = true
s.public_header_files = 'Pod/Classes/*.h'
s.source_files = 'Pod/Classes/Spark-SDK.h'
s.subspec 'Helpers' do |ss|
ss.source_files = 'Pod/Classes/Helpers/*.{h,m}'
ss.ios.frameworks = 'SystemConfiguration', 'Security'
end
s.subspec 'SDK' do |ss|
ss.source_files = 'Pod/Classes/SDK/Spark*.{h,m}'
ss.dependency 'AFNetworking'
ss.dependency 'Spark-SDK/Helpers'
end
# s.frameworks = 'SystemConfiguration', 'Security'
end