-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathNumericPicker.podspec
More file actions
32 lines (27 loc) · 1.4 KB
/
NumericPicker.podspec
File metadata and controls
32 lines (27 loc) · 1.4 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
31
32
#
# Be sure to run `pod lib lint NumericPicker.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'NumericPicker'
s.version = '1.1.1'
s.summary = 'iOS picker for easily selecting numbers by digit.'
s.swift_version = '4.2'
s.description = <<-DESC
NumericPicker is a drop-in iOS picker control written in Swift. It makes simplifies the creation of pickers that allow
your users to specify numbers by digit. It automatically uses the proper grouping and decimal separator for the
current (or specified) locale. You can easily dictate the number of integer and decimal places in the controller.
DESC
s.homepage = 'https://github.com/MattLewin/NumericPicker'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.author = { 'Matt Lewin' => 'matt@mogroups.com' }
s.source = { :git => 'https://github.com/MattLewin/NumericPicker.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/mlewin72'
s.ios.deployment_target = '10.3'
s.source_files = 'Sources'
s.frameworks = 'UIKit'
end