-
Notifications
You must be signed in to change notification settings - Fork 4
/
Jsonify.podspec
executable file
·27 lines (22 loc) · 985 Bytes
/
Jsonify.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
Pod::Spec.new do |s|
s.name = "Jsonify"
s.version = "2.2.0"
s.summary = "A delightful JSON parsing framework written in Swift"
s.description = <<-DESC
A delightful JSON parsing framework for iOS/macOS platforms written in Swift.
DESC
s.homepage = "https://github.com/Meniny/Jsonify"
s.license = 'MIT'
s.author = { "Meniny" => "Meniny@qq.com" }
s.source = { :git => "https://github.com/Meniny/Jsonify.git", :tag => s.version.to_s }
s.social_media_url = 'http://meniny.cn/'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5' }
s.swift_version = "5"
s.source_files = 'Jsonify/**/*{.h}','Jsonify/**/*{.swift}'
s.public_header_files = 'Jsonify/**/*{.h}'
s.frameworks = 'Foundation'
end