forked from particle-iot/spark-setup-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SparkSetup.podspec
45 lines (36 loc) · 1.9 KB
/
SparkSetup.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
Pod::Spec.new do |s|
s.name = "SparkSetup"
s.version = "0.3.3"
s.summary = "Particle iOS Device Setup library for easy integration of setup process for Particle devices in your app"
s.description = <<-DESC
Particle (formerly Spark) Device Setup library for integrating setup process of Particle devices in your app
This library will allow you to easily invoke a standalone setup wizard UI for setting up
Particle devices (photon) from within your app. Setup UI look & feel can be easily customized with custom brand
logos/colors/fonts/texts and instructional video.
DESC
s.homepage = "https://github.com/spark/spark-setup-ios"
s.screenshots = "http://i58.tinypic.com/15yhdeb.jpg"
s.license = 'Apache 2.0'
s.author = { "Particle" => "ido@particle.io" }
s.source = { :git => "https://github.com/spark/spark-setup-ios.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/particle'
s.platform = :ios, '8.0'
s.requires_arc = true
s.public_header_files = 'Classes/*.h'
s.source_files = 'Classes/*.h'
s.subspec 'Resources' do |resources|
resources.resource_bundle = {'SparkSetup' => ['Resources/**/*.{png,storyboard}']}
# s.resource_bundle = {'SparkSetup' => ['Resources/**/*.{png,storyboard}']}
end
s.subspec 'Core' do |core|
core.source_files = 'Classes/User/**/*.{h,m}', 'Classes/UI/**/*'
core.dependency 'Spark-SDK'
core.dependency 'SparkSetup/Comm'
core.dependency 'SparkSetup/Resources'
core.ios.frameworks = 'UIKit'
end
s.subspec 'Comm' do |comm|
comm.source_files = 'Classes/Comm/**/*'
comm.ios.frameworks = 'SystemConfiguration', 'Security'
end
end