forked from marcjordant/NumericKeyboard
-
Notifications
You must be signed in to change notification settings - Fork 1
/
NumericKeyboard.podspec
31 lines (24 loc) · 1.29 KB
/
NumericKeyboard.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
#
# Be sure to run `pod lib lint NumericKeyboard.podspec' to ensure this is a
# valid spec before submitting.
#
Pod::Spec.new do |s|
s.name = 'NumericKeyboard'
s.version = '1.4.0'
s.summary = 'NumericKeyboard is a input view for UITextField & UITextView that shows a numeric entry keyboard on iPad.'
s.description = <<-DESC
This keyboard view is intended to replace the default keyboard on iPad for entering numerical values.
As the default keyboard on iPad still shows all keys even for numerical entry modes, this keyboard only focuses on numeric keys.
DESC
s.homepage = 'https://github.com/marcjordant/NumericKeyboard'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Marc Jordant' => 'marcjordant@gmail.com' }
s.source = { :git => 'https://github.com/marcjordant/NumericKeyboard.git', :tag => s.version.to_s }
s.screenshots = 'https://github.com/marcjordant/NumericKeyboard/blob/master/example.png?raw=true'
s.social_media_url = 'https://twitter.com/marcjordant'
s.ios.deployment_target = '8.0'
s.source_files = 'NumericKeyboard/Classes/**/*'
s.resource_bundles = {
'NumericKeyboard' => ['NumericKeyboard/Assets/**/*', 'NumericKeyboard/Resources/**/*']
}
end