
- Removed YuMi/Library/ (138 MB, not tracked) - Removed YuMi/Resources/ (23 MB, not tracked) - Removed old version assets (566 files, not tracked) - Excluded Pods/, xcuserdata/ and other build artifacts - Clean repository optimized for company server deployment
35 lines
952 B
Ruby
35 lines
952 B
Ruby
|
|
Pod::Spec.new do |spec|
|
|
#
|
|
|
|
spec.name = "YuMi"
|
|
spec.version = "0.0.1"
|
|
spec.summary = "YuMiYuMi"
|
|
|
|
# This description is used to generate tags and improve search results.
|
|
# * Think: What does it do? Why did you write it? What is the focus?
|
|
# * Try to keep it short, snappy and to the point.
|
|
# * Write the description between the DESC delimiters below.
|
|
# * Finally, don't worry about the indent, CocoaPods strips it!
|
|
spec.description = <<-DESC
|
|
YuMiYuMiYuMi
|
|
DESC
|
|
|
|
spec.homepage = "https://gitlab.com/cocoapods"
|
|
spec.license = "MIT"
|
|
|
|
spec.author = { "asd" => "asd@163.com" }
|
|
|
|
spec.platform = :ios, "9.0"
|
|
spec.ios.deployment_target = "9.0"
|
|
|
|
spec.source = { :git => "git@gitlab.com:cocoapods/YuMi.git", :tag => "#{spec.version}" }
|
|
|
|
|
|
|
|
spec.source_files = "Class", "Class/**/*.{h,m,swift}"
|
|
|
|
spec.static_framework = true
|
|
|
|
end
|