-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIPicker.podspec
46 lines (34 loc) · 1.16 KB
/
IPicker.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
38
39
40
41
42
43
44
45
46
#
# Be sure to run `pod spec lint IPicker.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
# 1
s.platform = :ios
s.ios.deployment_target = '11.0'
s.name = "IPicker"
s.summary = "Let your users pick data or a date elegantly."
#s.requires_arc = true
# 2
s.version = "2.0.3"
# 3
s.license = { :type => "MIT", :file => "LICENSE" }
# 4 - Replace with your name and e-mail address
s.author = { "Yousef" => "[email protected]" }
# 5 - Replace this URL with your own GitHub page's URL (from the address bar)
s.homepage = "https://github.com/YousefAnsary/iPicker"
# 6 - Replace this URL with your own Git URL from "Quick Setup"
s.source = { :git => "https://github.com/YousefAnsary/iPicker.git",
:tag => "#{s.version}" }
# 7
s.framework = "UIKit"
# 8
s.source_files = "Sources/IPicker/*.{swift}"
# 9
s.resources = "Sources/IPicker/Assets/*.{png,jpeg,jpg,storyboard,xib,xcassets}"
# 10
s.swift_version = "4.0"
end