-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathJSONPreview.podspec
executable file
·43 lines (26 loc) · 1.13 KB
/
JSONPreview.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
# pod lib lint --verbose --allow-warnings JSONPreview.podspec
# pod trunk push --verbose --allow-warnings JSONPreview.podspec
Pod::Spec.new do |s|
s.name = 'JSONPreview'
s.version = '2.3.1'
s.summary = '🎨 A view that can be highlighted after formatting JSON.'
s.description = '🎨 A view that can be highlighted after formatting JSON. It also provides folding function.'
s.homepage = 'https://github.com/RakuyoKit/JSONPreview'
s.license = 'MIT'
s.author = { 'Rakuyo' => 'rakuyo.mo@gmail.com' }
s.source = { :git => 'https://github.com/RakuyoKit/JSONPreview.git', :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = "12.0"
s.tvos.deployment_target = "12.0"
s.visionos.deployment_target = "1.0"
s.swift_version = '5.0'
s.static_framework = true
s.module_name = 'JSONPreview'
s.source_files = 'Sources/*/*.swift'
s.resource_bundle = {
'JSONPreviewBundle' => [
'Sources/Resources/*.xcassets',
'Sources/PrivacyInfo.xcprivacy'
]
}
end