forked from badoo/Chatto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChattoAdditions.podspec
More file actions
22 lines (22 loc) · 978 Bytes
/
ChattoAdditions.podspec
File metadata and controls
22 lines (22 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "ChattoAdditions"
s.version = "3.6.0"
s.summary = "UI componentes for Chatto"
s.description = <<-DESC
Text and photo bubbles
Input bar for text and photo messages
DESC
s.homepage = "https://github.com/badoo/Chatto"
s.license = { :type => "MIT"}
s.platform = :ios, "9.0"
s.authors = { 'Diego Sanchez' => 'diego.sanchezr@gmail.com', 'Anton Schukin' => 'a.p.schukin@gmail.com' }
s.source = { :git => "https://github.com/badoo/Chatto.git", :tag => s.version.to_s }
s.source_files = "ChattoAdditions/Source/**/*.{h,m,swift}"
s.public_header_files = "ChattoAdditions/Source/**/*.h"
s.requires_arc = true
s.swift_version = '5.1'
s.resource_bundles = {
'ChattoAdditions' => ["ChattoAdditions/Source/**/*.xib", "ChattoAdditions/Source/**/*.storyboard", "ChattoAdditions/Source/**/*.xcassets"]
}
s.dependency 'Chatto'
end