forked from badoo/Chatto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChatto.podspec
More file actions
17 lines (17 loc) · 761 Bytes
/
Chatto.podspec
File metadata and controls
17 lines (17 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "Chatto"
s.version = "3.2.0"
s.summary = "Chat framework in Swift"
s.description = <<-DESC
Lightweight chat framework to build Chat apps
DESC
s.homepage = "https://github.com/badoo/Chatto"
s.license = { :type => "MIT"}
s.platform = :ios, "8.0"
s.authors = { 'Diego Sanchez' => 'diego.sanchezr@gmail.com' }
s.source = { :git => "https://github.com/doraeminemon/Chatto", :tag => s.version.to_s }
s.source_files = "Chatto/Source/**/*.{h,m,swift}"
s.public_header_files = "Chatto/Source/**/*.h"
s.requires_arc = true
# s.resources = ["Chatto/Source/**/*.xib", "Chatto/Source/**/*.storyboard", "Chatto/Source/**/*.xcassets"]
end