-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEFSafeArray.podspec
28 lines (22 loc) · 1.1 KB
/
EFSafeArray.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
Pod::Spec.new do |s|
s.name = 'EFSafeArray'
s.version = '5.1.4'
s.summary = 'EFSafeArray is an extension to make Array subscript safe.'
s.description = <<-DESC
EFSafeArray is an extension to make array subscript safe, nil will be return instead of crash if index is out of range.
DESC
s.homepage = 'https://github.com/EFPrefix/EFSafeArray'
s.screenshots = 'https://raw.githubusercontent.com/EFPrefix/EFSafeArray/master/Assets/EFSafeArray.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'EyreFree' => '[email protected]' }
s.source = { :git => 'https://github.com/EFPrefix/EFSafeArray.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/EyreFree777'
s.swift_version = "5.0"
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '6.0'
s.requires_arc = true
s.source_files = 'EFSafeArray/*.{h,swift}'
s.frameworks = 'Foundation'
end