forked from QuickBlox/QMChatViewController-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQMChatViewController.podspec
75 lines (63 loc) · 3.05 KB
/
QMChatViewController.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
#
# Be sure to run `pod spec lint QMChatViewController.podspec --verbose --use-libraries --allow-warnings' 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/
#
# To submit use `pod trunk push QMChatViewController.podspec --verbose --use-libraries --allow-warnings`
#
Pod::Spec.new do |s|
s.name = "QMChatViewController"
s.version = "0.5.1"
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" => "andrey.ivanov@quickblox.com", "Vitaliy Gorbachov" => "vitaliy.gorbachov@quickblox.com", "Vitaliy Gurkovsky" => "vitaliy.gurkovsky@injoit.com"}
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/QuickBlox/QMChatViewController-ios.git", :tag => "#{s.version}" }
s.source_files = "QMChatViewController/QMChatViewController.{h,m}"
s.subspec 'Categories' do |ss|
ss.source_files = 'QMChatViewController/Categories/*.{h,m}'
end
s.subspec 'Utils' do |ss|
ss.dependency 'QMChatViewController/Categories'
ss.source_files = 'QMChatViewController/Utils/**/*.{h,m}'
end
s.subspec 'QMChatLocationSnapshotter' do |ss|
ss.dependency 'QMChatViewController/Utils'
ss.source_files = 'QMChatViewController/QMChatLocationSnapshotter/*.{h,m}'
end
s.subspec 'QMChatDataSource' do |ss|
ss.dependency 'QMChatViewController/Utils'
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 'QMChatViewController/Categories'
ss.dependency 'QMChatViewController/Protocols'
ss.dependency 'QMChatViewController/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.xcconfig = { "FRAMEWORK_SEARCH_PATHS" => "$(PODS_ROOT)/QuickBlox/" }
s.prefix_header_contents = '#import <Quickblox/Quickblox.h>'
s.dependency "QuickBlox", ">= 2.10"
s.dependency "TTTAttributedLabel", "> 1.13"
s.dependency "SDWebImage", "~> 4.0.0"
s.dependency "FFCircularProgressView"
end