-
Notifications
You must be signed in to change notification settings - Fork 290
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
29 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "EGOCache" | ||
s.version = "2.1.3" | ||
s.summary = "Fast Caching for Objective-C (iPhone & Mac Compatible)." | ||
s.description = "EGOCache is a simple, thread-safe key value cache store. It has native support for NSString, UI/NSImage, and NSData, but can store anything that implements <NSCoding>. All cached items expire after the timeout, which by default, is one day." | ||
s.version = "2.2.0" | ||
s.summary = "Fast Caching for Objective-C (Works with macOS, iOS, tvOS and watchOS)." | ||
s.description = "EGOCache is a simple, thread-safe key value cache store for macOS, iOS, tvOS and watchOS." | ||
s.homepage = "https://github.com/enormego/EGOCache" | ||
s.license = "MIT" | ||
s.author = "Enormego, Shaun Harrison" | ||
s.source = { :git => "https://github.com/enormego/EGOCache.git", :tag => "v" + s.version.to_s } | ||
s.author = "Shaun Harrison" | ||
s.social_media_url = "http://twitter.com/shnhrrsn" | ||
s.source = { :git => "https://github.com/enormego/EGOCache.git", :tag => s.version.to_s } | ||
s.requires_arc = true | ||
s.source_files = "*.{h,m}" | ||
s.source_files = "Sources/*.{h,m}" | ||
s.osx.deployment_target = "10.8" | ||
s.ios.deployment_target = "7.0" | ||
s.tvos.deployment_target = "9.0" | ||
s.watchos.deployment_target = "2.0" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters