Skip to content

Commit 18a59b7

Browse files
committed
Merge pull request #32 from hyperoslo/feature/tvos
Feature tvOS
2 parents 3fa1306 + 1c18374 commit 18a59b7

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Cache.podspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ Pod::Spec.new do |s|
1010

1111
s.ios.deployment_target = '8.0'
1212
s.osx.deployment_target = '10.9'
13+
s.tvos.deployment_target = '9.2'
1314

1415
s.requires_arc = true
1516
s.ios.source_files = 'Source/{iOS,Shared}/**/*'
1617
s.osx.source_files = 'Source/{Mac,Shared}/**/*'
18+
s.tvos.source_files = 'Source/{iOS,Shared}/**/*'
1719

1820
s.frameworks = 'Foundation'
1921
end

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
66
[![License](https://img.shields.io/cocoapods/l/Cache.svg?style=flat)](http://cocoadocs.org/docsets/Cache)
77
[![Platform](https://img.shields.io/cocoapods/p/Cache.svg?style=flat)](http://cocoadocs.org/docsets/Cache)
8+
![Swift](https://img.shields.io/badge/%20in-swift%202.2-orange.svg)
89

910
## Table of Contents
1011

@@ -84,7 +85,7 @@ let config = Config(
8485
// Expiry date that will be applied by default for every added object
8586
// if it's not overridden in the add(key: object: expiry: completion:) method
8687
expiry: .Date(NSDate().dateByAddingTimeInterval(100000)),
87-
// Maximum size of your cache storage
88+
// Maximum size of your cache storage
8889
maxSize: 10000)
8990

9091
let cache = HybridCache(name: "Custom", config: config)

0 commit comments

Comments
 (0)