-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDEViewControllerCache.podspec
More file actions
25 lines (20 loc) · 1.16 KB
/
DEViewControllerCache.podspec
File metadata and controls
25 lines (20 loc) · 1.16 KB
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
Pod::Spec.new do |s|
s.name = 'DEViewControllerCache'
s.version = '0.1'
s.homepage = 'https://github.com/dreamengine/DEViewControllerCache'
s.author = { 'Dream Engine Interactive, Inc.' => 'contact@dreamengine.com' }
s.social_media_url = 'https://twitter.com/dreamengine'
s.summary = 'Awesome caching manager for UIViewControllers.'
s.description = "DEViewControllerCache is a cache system for iOS UIViewControllers. It automatically holds onto discarded UIViewController objects for later reuse and will purge unused controller objects according to NSCache memory considerations (including memory warnings). If a cached UIViewController instance is unavailable, it will automatically instantiate a new object and prepare it for caching."
s.platform = :ios, '6.0'
s.requires_arc = true
s.frameworks = ['Foundation', 'UIKit']
s.source = { :git => 'https://github.com/dreamengine/DEViewControllerCache.git', :tag => s.version.to_s }
s.source_files = 'src/*.{h,m}'
s.dependency 'DECategories/UIViewController+DEConveniences'
s.dependency 'OSCache'
s.license = {
:type => 'MIT',
:file => 'LICENSE'
}
end