Browse Source

[Add] SwiftBase32 (0.9.0)

xcbosa mbp16 2 năm trước cách đây
mục cha
commit
f88c1f25ed

+ 16 - 0
SwiftBase32/0.9.0/SwiftBase32.podspec

@@ -0,0 +1,16 @@
+Pod::Spec.new do |s|
+  s.name                      = 'SwiftBase32'
+  s.version                   = '0.9.0'
+  s.summary                   = 'Base32 implementation for Swift.'
+  s.homepage                  = 'https://git.forgetive.org/XCAppCollection/SwiftBase32'
+  s.source                    = { :git => s.homepage + '.git', :tag => s.version }
+  s.license                   = { :type => 'MIT', :file => 'LICENSE' }
+  s.author                    = { 'Norio Nomura' => 'norio.nomura@gmail.com' }
+  s.source_files              = 'Sources/**/*.{h,c,swift}'
+  s.pod_target_xcconfig       = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
+  s.ios.deployment_target     = '9.0'
+  s.osx.deployment_target     = '10.9'
+  s.tvos.deployment_target    = '9.0'
+  s.watchos.deployment_target = '2.0'
+  s.swift_versions            = ['4.2', '5.0', '5.1']
+end