-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathGDChannel.podspec
41 lines (34 loc) · 1.38 KB
/
GDChannel.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
#
# Be sure to run `pod lib lint GDChannel.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 = "GDChannel"
s.version = "0.8.0"
s.summary = "iOS and Mac OS X client for realtime-channel."
s.homepage = "https://github.com/goodow/GDChannel"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Larry Tin" => "[email protected]" }
s.source = { :git => "https://github.com/goodow/GDChannel.git", :tag => "v#{s.version}" }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.platform = :ios, '7.0'
s.default_subspec = 'Core'
s.subspec 'Core' do |sp|
sp.dependency 'MQTTKit', '~> 0.1.0'
sp.dependency 'Protobuf', '~> 3.0'
sp.source_files = 'Pod/Classes/**/*', 'Pod/Generated/**/*'
sp.requires_arc = ['Pod/Classes/**/*']
sp.exclude_files = 'Pod/Classes/Firebase/**/*'
sp.resource_bundle = { 'GDChannel' => 'protos/*.proto' }
end
s.subspec 'Firebase' do |sp|
sp.dependency 'Firebase/Database'
sp.dependency 'GDChannel/Core'
sp.source_files = 'Pod/Classes/Firebase/**/*'
end
end