forked from cwalo/InputBarAccessoryView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
InputBarAccessoryView.podspec
37 lines (26 loc) · 994 Bytes
/
InputBarAccessoryView.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
Pod::Spec.new do |s|
# 1 - Specs
s.platform = :ios
s.ios.deployment_target = '9.0'
s.name = 'InputBarAccessoryView'
s.summary = "Make powerful and flexible InputBars"
s.description = "A simple and highly customizable InputAccessoryView perfect for messaging applications."
s.requires_arc = true
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0' }
# 2 - Version
s.version = "1.2.0"
# 3 - License
s.license = { :type => "MIT", :file => "LICENSE" }
# 4 - Author
s.author = { "Nathan Tannar" => "[email protected]" }
# 5 - Homepage
s.homepage = "https://github.com/nathantannar4/InputBarAccessoryView"
# 6 - Source
s.source = { :git => "https://github.com/nathantannar4/InputBarAccessoryView.git", :tag => "#{s.version}"}
# 7 - Dependencies
s.framework = "UIKit"
s.framework = "Foundation"
# 8 - Source Files
s.source_files = "InputBarAccessoryView/**/*.{swift}"
# 9 - Resources
end