-
Notifications
You must be signed in to change notification settings - Fork 5
/
WGDigitField.podspec
36 lines (29 loc) · 1.29 KB
/
WGDigitField.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
#
# Be sure to run `pod lib lint WGDigitField.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 https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'WGDigitField'
s.version = '1.0.1'
s.summary = 'A customizable digit input field.'
s.description = <<-DESC
To make sure user inputing security code with a smooth experience, this pod will help you initializing a customized digit field with very short codes.
DESC
s.homepage = 'https://github.com/wgy6055/WGDigitField'
s.screenshots = 'https://s1.ax1x.com/2018/10/20/i0qmqO.gif'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { '王冠宇' => 'wangguanyu@mobike.com' }
s.source = { :git => 'https://github.com/wgy6055/WGDigitField.git', :tag => s.version.to_s }
s.social_media_url = 'http://weibo.com/131471169'
s.ios.deployment_target = '8.0'
s.source_files = 'WGDigitField/Classes/**/*'
# s.resource_bundles = {
# 'WGDigitField' => ['WGDigitField/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit'
s.dependency 'Masonry'
end