Norio Nomura 8 жил өмнө
parent
commit
bc783ec402
2 өөрчлөгдсөн 16 нэмэгдсэн , 0 устгасан
  1. 1 0
      .travis.yml
  2. 15 0
      Base32.podspec

+ 1 - 0
.travis.yml

@@ -8,6 +8,7 @@ matrix:
     - xcodebuild -scheme Base32 test -destination "name=Apple TV 1080p" | xcpretty
     - xcodebuild -scheme Base32 build -destination "name=Apple Watch - 38mm" | xcpretty
     - swift test
+    - pod lib lint
     env: JOB=macOS
     os: osx
     osx_image: xcode8.2

+ 15 - 0
Base32.podspec

@@ -0,0 +1,15 @@
+Pod::Spec.new do |s|
+  s.name                      = 'Base32'
+  s.version                   = '0.5.1'
+  s.summary                   = 'Base32 implementation for Swift.'
+  s.homepage                  = 'https://github.com/norio-nomura/Base32'
+  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     = '8.0'
+  s.osx.deployment_target     = '10.9'
+  s.tvos.deployment_target    = '9.0'
+  s.watchos.deployment_target = '2.0'
+end