-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathTimedSilver.podspec
19 lines (19 loc) · 1.01 KB
/
TimedSilver.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "TimedSilver"
s.version = "1.2.0"
s.summary = "TimedSilver: A collection of swift extensions."
s.description = <<-DESC
All about swift extension, a collection of useful Swift extensions extending iOS Frameworks such as Foundation, UIKit, swift struct and so on. This would help you to quickly build your swift applications.
DESC
s.homepage = "https://github.com/hilen/TimedSilver"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Hilen" => "hilenkz@gmail.com" }
s.source = { :git => "https://github.com/hilen/TimedSilver.git", :tag => s.version.to_s }
s.ios.deployment_target = "9.0"
s.requires_arc = true
s.platform = :ios, "9.0"
s.source_files = "Sources/**/*.swift","Sources/*.{h,swift}"
s.frameworks = 'Foundation', 'UIKit', 'QuartzCore', 'AVFoundation'
s.swift_version = '5.0'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0' }
end