-
Notifications
You must be signed in to change notification settings - Fork 0
/
Nuke.podspec
21 lines (18 loc) · 869 Bytes
/
Nuke.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'Nuke'
s.version = '7.5.1'
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.ios.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.source_files = 'Sources/**/*'
end