-
Notifications
You must be signed in to change notification settings - Fork 4
/
Johnny.podspec
27 lines (23 loc) · 1.21 KB
/
Johnny.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Pod::Spec.new do |s|
s.name = "Johnny"
s.version = "3.0.5"
s.summary = "Melodic Caching in Swift"
s.homepage = "https://github.com/zolomatok/Johnny"
s.license = { :type => "MIT" }
s.authors = { "Zoltán Matók" => "[email protected]" }
s.source = { :git => "https://github.com/zolomatok/Johnny.git", :tag => "3.0.5"}
s.requires_arc = true
s.module_name = 'Johnny'
s.swift_version = '4.0'
s.osx.deployment_target = "10.10"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.osx.source_files = 'Johnny/*.swift', 'Johnny/Extensions/common/*.swift', 'Johnny/Extensions/macOS/*.swift'
s.ios.source_files = 'Johnny/*.swift', 'Johnny/Extensions/*.swift', 'Johnny/Extensions/common/*.swift'
s.tvos.source_files = 'Johnny/*.swift', 'Johnny/Extensions/*.swift', 'Johnny/Extensions/common/*.swift'
s.watchos.source_files = 'Johnny/*.swift', 'Johnny/Extensions/common/*.swift', 'Johnny/Extensions/UIColor.swift', 'Johnny/Extensions/UIImage.swift'
s.osx.frameworks = 'AppKit', 'Foundation'
s.ios.frameworks = 'UIKit', 'Foundation'
s.tvos.frameworks = 'UIKit', 'Foundation'
end