-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathURLPreview.podspec
52 lines (33 loc) · 2.32 KB
/
URLPreview.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
47
48
49
50
51
52
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
s.name = "URLPreview"
s.version = "2.1.0"
s.summary = "An NSURL extension for showing preview info of webpages."
s.description = "You may want to use this if you want to mimick Facebook app's behavior when you post a link on your status."
s.homepage = "https://github.com/itsmeichigo/URLPreview"
s.screenshots = "https://raw.githubusercontent.com/itsmeichigo/URLPreview/master/ScreenShot.png"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
s.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
s.author = { "Huong Do" => "[email protected]" }
s.social_media_url = "http://twitter.com/itsmeichigo"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# If this Pod runs only on iOS or OS X, then specify the platform and
# the deployment target. You can optionally include the target after the platform.
#
s.platform = :ios, "8.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
s.source = { :git => "https://github.com/itsmeichigo/URLPreview.git", :tag => s.version }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
s.source_files = "Source"
s.framework = "UIKit"
s.dependency 'Kanna', '~> 5.2.2'
s.requires_arc = true
s.swift_versions = ['3.2', '4.0', '4.2', '5']
end