forked from kean/Nuke
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNuke.podspec
More file actions
23 lines (19 loc) · 917 Bytes
/
Nuke.podspec
File metadata and controls
23 lines (19 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'Nuke'
s.version = '9.5.0'
s.summary = 'A powerful image loading and caching system'
s.description = <<-EOS
A powerful image loading and caching system which makes simple tasks like loading images into views extremely simple, while also supporting more advanced features for more demanding apps.
EOS
s.homepage = 'https://github.com/kean/Nuke'
s.license = 'MIT'
s.author = 'Alexander Grebenyuk'
s.social_media_url = 'https://twitter.com/a_grebenyuk'
s.source = { :git => 'https://github.com/kean/Nuke.git', :tag => s.version.to_s }
s.swift_versions = ['5.1', '5.2', '5.3']
s.ios.deployment_target = '11.0'
s.watchos.deployment_target = '4.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '11.0'
s.source_files = 'Sources/**/*'
end