MSYConfig.podspec 753 B

12345678910111213141516171819202122232425262728293031
  1. Pod::Spec.new do |spec|
  2. spec.name = "MSYConfig"
  3. spec.version = "1.0.0"
  4. spec.summary = "美时互娱配置库"
  5. spec.description = "ios用户信息"
  6. spec.homepage = "http://github/ubungit.git"
  7. spec.license = "MIT"
  8. spec.author = { "静静地白色外套" => "296019487@qq.com" }
  9. spec.platform = :ios, "8.0"
  10. spec.source = { :git => "http://github/ubungit.git", :tag => "#{spec.version}" }
  11. spec.default_subspec = 'base'
  12. spec.subspec 'base' do |spec|
  13. spec.source_files = ["source/base/**/*.{h,m,swift}","source/**.{h,m,swift}"]
  14. end
  15. spec.subspec 'encrypt' do |spec|
  16. spec.source_files = ["source/encrypt/**/*.{h,m,swift}","source/**.{h,m,swift}"]
  17. end
  18. end