-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNSKJSON.podspec
More file actions
20 lines (16 loc) · 770 Bytes
/
Copy pathNSKJSON.podspec
File metadata and controls
20 lines (16 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "NSKJSON"
s.version = "1.5"
s.summary = "NSKJSON is a swift library for parsing plain-json format and json5 format."
s.homepage = "https://github.com/NSSimpleApps/NSKJSON"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'NSSimpleApps, Sergey Poluyanov' => 'ns.simple.apps@gmail.com' }
s.source = { :git => "https://github.com/NSSimpleApps/NSKJSON.git", :tag => s.version.to_s }
s.requires_arc = true
s.swift_version = '6.0'
s.resources = "Source/PrivacyInfo.xcprivacy"
s.platform = :ios, '15.0', :osx, '11.5'
s.ios.deployment_target = "15.0"
s.osx.deployment_target = "11.5"
s.source_files = "Source/Swift/*.swift"
end