-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSubstring.podspec
26 lines (22 loc) · 915 Bytes
/
Substring.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
Pod::Spec.new do |s|
s.name = 'Substring'
s.module_name = 'Substring'
s.version = '1.1.0'
s.summary = 'Substring without boilerplate code.'
s.homepage = 'https://github.com/Meniny/Substring'
s.license = { type: 'MIT', file: 'LICENSE.md' }
s.authors = { 'Elias Abel' => 'admin@meniny.cn' }
s.social_media_url = 'https://meniny.cn/'
# s.screenshot = ''
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.requires_arc = true
s.source = { git: 'https://github.com/Meniny/Substring.git', tag: s.version.to_s }
s.source_files = 'Substring/**/*.swift'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5' }
s.swift_version = '5'
# s.documentation_url = 'https://github.com/Meniny/Substring/docs'
# s.dependency "Jsonify"
end