forked from fphilipe/PHFComposeBarView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPHFComposeBarView.podspec
More file actions
30 lines (29 loc) · 1.45 KB
/
Copy pathPHFComposeBarView.podspec
File metadata and controls
30 lines (29 loc) · 1.45 KB
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
Pod::Spec.new do |s|
s.name = 'PHFComposeBarView'
s.version = '1.1.1'
s.summary = 'A precise reconstruction of the compose bar from iOS 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.
DESC
s.homepage = 'https://github.com/fphilipe/PHFComposeBarView'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Philipe Fatio' => 'me@phili.pe' }
s.source = { :git => 'https://github.com/fphilipe/PHFComposeBarView.git', :tag => 'v1.1.1' }
s.source_files = 'Classes/*'
s.resources = 'Resources/*'
s.preserve_paths = 'LICENSE', 'README.md'
s.requires_arc = true
s.platform = :ios
s.ios.deployment_target = '5.0'
s.screenshots = %w[
https://rawgithub.com/fphilipe/PHFComposeBarView/master/Screenshots/empty.png
https://rawgithub.com/fphilipe/PHFComposeBarView/master/Screenshots/text.png
]
s.dependency 'PHFDelegateChain', '~> 1.0'
end