-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathKCKeyboardImagePicker.podspec
More file actions
26 lines (21 loc) · 996 Bytes
/
KCKeyboardImagePicker.podspec
File metadata and controls
26 lines (21 loc) · 996 Bytes
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 = "KCKeyboardImagePicker"
s.version = "0.4.2"
s.summary = "A keyboard-sized scrolling image picker for IM apps."
s.description = <<-DESC
This scrolling image picker is inspired by the Facebook Messenger app.
Developer can attach up to four buttons on the top of a blureed effect for a selected image.
Check out the demo for more details.
DESC
s.homepage = "https://github.com/Kev1nChen/KCKeyboardImagePicker"
s.license = 'MIT'
s.author = 'Kevin Yufei Chen'
s.source = { :git => "https://github.com/Kev1nChen/KCKeyboardImagePicker.git", :tag => "#{s.version}" }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'KCKeyboardImagePicker' => ['Pod/Assets/*.png']
}
s.public_header_files = 'Pod/Classes/*.h'
end