Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathJSONPreview.podspec
More file actions
Latest commit
executable file
·43 lines (26 loc) · 1.13 KB
/
Copy pathJSONPreview.podspec
File metadata and controls
executable file
·43 lines (26 loc) · 1.13 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
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.newdo |s|
s.name='JSONPreview'
s.version='2.3.3'
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