forked from fphilipe/PHFComposeBarView
-
Notifications
You must be signed in to change notification settings - Fork 1
/
PHFComposeBarView.podspec
31 lines (30 loc) · 1.55 KB
/
PHFComposeBarView.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
Pod::Spec.new do |s|
s.name = 'PHFComposeBarView'
s.version = '2.0.1'
s.summary = 'A precise reconstruction of the compose bar from iOS 7 Messages.app.'
s.description = <<-DESC
The compose bar from the messages application on iOS is often replicated in
applications, mostly with slightly different visuals and behavior. This class is
an exact reconstruction of the compose bar and behaves exactly like it. It is
configurable in terms of maximium height the input view can grow. By specifying
a maximum text length a counter is shown, similar to composing an SMS. You can
also specify an image for the utility button on the left of the input which
causes that button to become visible. Further, the color of the send button can
be customized.
DESC
s.homepage = 'https://github.com/fphilipe/PHFComposeBarView'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Philipe Fatio' => '[email protected]' }
s.source = { :git => 'https://github.com/fphilipe/PHFComposeBarView.git', :tag => 'v2.0.1' }
s.source_files = 'Classes/*'
s.preserve_paths = 'LICENSE', 'README.md'
s.requires_arc = true
s.platform = :ios
s.ios.deployment_target = '7.0'
s.screenshots = %w[
https://raw.github.com/fphilipe/PHFComposeBarView/v2.0.0/Screenshots/demo.gif
https://raw.github.com/fphilipe/PHFComposeBarView/v2.0.0/Screenshots/empty.png
https://raw.github.com/fphilipe/PHFComposeBarView/v2.0.0/Screenshots/text.png
]
s.dependency 'PHFDelegateChain', '~> 1.0'
end