12345678910111213141516171819202122232425262728293031 |
- Pod::Spec.new do |spec|
- spec.name = "MSYConfig"
- spec.version = "1.0.0"
- spec.summary = "美时互娱配置库"
-
- spec.description = "ios用户信息"
- spec.homepage = "http://github/ubungit.git"
- spec.license = "MIT"
-
- spec.author = { "静静地白色外套" => "296019487@qq.com" }
-
- spec.platform = :ios, "8.0"
- spec.source = { :git => "http://github/ubungit.git", :tag => "#{spec.version}" }
- spec.default_subspec = 'base'
- spec.subspec 'base' do |spec|
- spec.source_files = ["source/base/**/*.{h,m,swift}","source/**.{h,m,swift}"]
- end
- spec.subspec 'encrypt' do |spec|
- spec.source_files = ["source/encrypt/**/*.{h,m,swift}","source/**.{h,m,swift}"]
- end
-
- end
|