forked from QuickBlox/QMChatViewController-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
QMCVDevelopment.podspec
81 lines (66 loc) · 3.02 KB
/
QMCVDevelopment.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#
# Be sure to run `pod spec lint QMChatViewController.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "QMCVDevelopment"
s.version = "0.6"
s.summary = "An elegant ready-to-go chat view controller for iOS chat applications that use Quickblox communication backend."
s.description = <<-DESC
* Ready-to-go chat view controller with a set of cells.
* Automatic cell size calculation.
* UI customisation for chat cells.
* Flexibility in improving and extending functionality.
* Easy to connect with Quickblox.
* Optimised and performant.
* Supports portrait and landscape orientations.
* Auto Layout inside.
DESC
s.homepage = "https://github.com/QuickBlox/QMChatViewController-ios"
s.license = { :type => "BSD", :file => "LICENSE" }
s.authors = {"Andrey Ivanov" => "[email protected]", "Vitaliy Gorbachov" => "[email protected]", "Vitaliy Gurkovsky" => "[email protected]"}
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/QuickBlox/QMChatViewController-ios.git", :tag => "#{s.version}" }
s.source_files = "QMChatViewController/QMChatViewController.{h,m}"
s.subspec 'QMChatLocationSnapshotter' do |ss|
ss.source_files = 'QMChatViewController/QMChatLocationSnapshotter/*.{h,m}'
end
s.subspec 'Categories' do |ss|
ss.dependency 'QMCVDevelopment/QMChatLocationSnapshotter'
ss.source_files = 'QMChatViewController/Categories/*.{h,m}'
end
s.subspec 'Utils' do |ss|
ss.dependency 'QMCVDevelopment/Categories'
ss.source_files = 'QMChatViewController/Utils/**/*.{h,m}'
end
s.subspec 'ViewModels' do |ss|
ss.dependency 'QMCVDevelopment/Categories'
ss.source_files = 'QMChatViewController/ViewModels/**/*.{h,m}'
end
s.subspec 'Sections' do |ss|
ss.dependency 'QMCVDevelopment/QMChatDataSource'
ss.source_files = 'QMChatViewController/QMChatSection/*.{h,m}'
end
s.subspec 'QMChatDataSource' do |ss|
ss.source_files = 'QMChatViewController/QMChatDataSource/*.{h,m}'
end
s.subspec 'Protocols' do |ss|
ss.source_files = 'QMChatViewController/Protocols/*.{h}'
end
s.subspec 'Views' do |ss|
ss.dependency 'QMCVDevelopment/Categories'
ss.dependency 'QMCVDevelopment/Protocols'
ss.dependency 'QMCVDevelopment/Utils'
ss.source_files = 'QMChatViewController/Views/**/*.{h,m}'
end
s.resource_bundles = { "QMChatViewController" => ["QMChatViewController/**/*.xib", "QMChatViewController/**/*.png"] }
s.resources = "QMChatViewController/Icons/Media.xcassets"
s.requires_arc = true
s.dependency "TTTAttributedLabel"
s.dependency "SDWebImage"
s.dependency "FFCircularProgressView"
s.xcconfig = { "FRAMEWORK_SEARCH_PATHS" => "$(PODS_ROOT)/../../Framework $(PODS_ROOT)/../External" }
end