forked from steve228uk/MessengerKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MessengerKit.podspec
46 lines (37 loc) · 2.04 KB
/
MessengerKit.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
#
# Be sure to run `pod lib lint MessengerKit.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'MessengerKit'
s.version = '1.0.5'
s.summary = 'A UI framework for building messenger interfaces on iOS'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
MessengerKit is a drop-in UI for messenger interfaces on iOS built in Swift. Centred around a single `UIViewController`, MessengerKit is themeable to fit your needs and includes a number of powerful features:
- `UICollectionView` based with pre-loading and caching of size calculation for bubbles.
- Auto-growing input view.
- Multiple included cell types: text, large-emoji, image, video.
- Presentation of `SFSafariViewController`
- Built-in, customisable themes.
- A custom theming system to bring your own `UICollectionViewCell`s, headers, footers, and input views.
- Avatar support (currently only in the `travamigos` theme).
The framework was built for and is used in production at [Travamigos](https://travamigos.com).
DESC
s.homepage = 'https://github.com/steve228uk/MessengerKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'steve228uk' => '[email protected]' }
s.source = { :git => 'https://github.com/steve228uk/MessengerKit.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/steve228uk'
s.ios.deployment_target = '10.0'
s.swift_version = '4.2'
s.source_files = ['MessengerKit/**/*.{h,m,swift}']
s.resources = 'MessengerKit/**/*.{xcassets,xib,nib}'
end