-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSKInputView.podspec
More file actions
21 lines (17 loc) · 821 Bytes
/
SKInputView.podspec
File metadata and controls
21 lines (17 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "SKInputView"
s.version = "0.0.1"
s.summary = "A compose bar likes the one in iOS7 Messages.app"
s.description = <<-DESC
SKInputView is a compose bar likes the one in iOS7 Messages.app.It is inspired by PHFComposeBarView which has some issues on iOS8 and has not updated for a log time.
DESC
s.homepage = "https://github.com/zsk425/SKInputView"
s.license = "MIT"
s.author = { "Shaokang Zhao" => "zsk425@hotmail.com" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/zsk425/SKInputView.git", :tag => "0.0.1" }
s.source_files = "SKInputView/*.{h,m}"
s.resource = "SKInputView/*.xib"
s.frameworks = "UIKit", "Foundation"
s.requires_arc = true
end