-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathFCChatHeads.podspec
26 lines (21 loc) · 997 Bytes
/
FCChatHeads.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
Pod::Spec.new do |s|
s.name = "FCChatHeads"
s.version = "1.0.3"
s.summary = "Library to use chat heads within your iOS app."
s.description = <<-DESC
Library to use chat heads within your iOS app with complete physics and animations which drive multi user chat behaviour to support collapsed/stacked or expanded states.
DESC
s.homepage = "https://github.com/flipkart-incubator/fk-ios-chatheads.git"
s.license = 'Apache License Version 2.0'
s.author = { "Rajat Gupta" => "[email protected]" }
s.source = { :git => "https://github.com/flipkart-incubator/fk-ios-chatheads.git", :tag => s.version.to_s }
s.platform = :ios, '6.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'FCChatHeads' => ['Pod/Assets/*.png']
}
s.frameworks = 'UIKit'
s.dependency 'pop', '~> 1.0'
s.dependency 'CMPopTipView'
end