-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathEnumCollection.podspec
More file actions
executable file
·27 lines (23 loc) · 974 Bytes
/
EnumCollection.podspec
File metadata and controls
executable file
·27 lines (23 loc) · 974 Bytes
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 = "EnumCollection"
s.version = "1.4.0"
s.summary = "An Extension for Swift Enum Type"
s.description = <<-DESC
EnumCollection is an Extension for Swift Enum Type.
DESC
s.homepage = "https://github.com/Meniny/EnumCollection"
s.license = 'MIT'
s.author = { "Elias Abel" => "Meniny@qq.com" }
s.source = { :git => "https://github.com/Meniny/EnumCollection.git", :tag => s.version.to_s }
s.social_media_url = 'https://meniny.cn/'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5' }
s.swift_version = '5'
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.source_files = 'EnumCollection/**/*.{h,swift}'
s.public_header_files = 'EnumCollection/**/*{.h}'
s.frameworks = 'Foundation'
#s.dependency ""
end