forked from badoo/Chatto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChattoAdditions.podspec
20 lines (20 loc) · 956 Bytes
/
ChattoAdditions.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "ChattoAdditions"
s.version = "4.0.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' => '[email protected]', 'Anton Schukin' => '[email protected]' }
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.3'
s.resources = ["ChattoAdditions/Source/**/*.xib", "ChattoAdditions/Source/**/*.storyboard", "ChattoAdditions/Source/**/*.xcassets"]
s.dependency 'Chatto', s.version.to_s
end