Skip to content

Commit 365d571

Browse files
author
Luc Dion
committed
Add missing sample files
1 parent 3c67c35 commit 365d571

File tree

3 files changed

+83
-1
lines changed

3 files changed

+83
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
.build/
55
build/
66
xcuserdata
7-
data/
7+
Data/
88
Pods/
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
2+
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3+
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4+
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
5+
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
6+
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
7+
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
8+
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
9+
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
10+
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
11+
// POSSIBILITY OF SUCH DAMAGE.
12+
//
13+
// Created by Luc Dion on 2017-08-23.
14+
15+
import Foundation
16+
17+
struct Series {
18+
let image = "sherlock"
19+
let showPopularity = 5
20+
let showYear = "2010"
21+
let showRating = "TV-14"
22+
let showLength = "3 Series"
23+
let selectedShow = "S3:E3"
24+
let showCast = "Benedict Cumberbatch, Martin Freeman, Una Stubbs"
25+
let showCreators = "Mark Gatiss, Steven Moffat"
26+
27+
let shows: [Show]
28+
}
29+
30+
struct Show {
31+
let title: String
32+
let length: String
33+
let detail: String
34+
let image: String
35+
let showPopularity = 5
36+
}
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<array>
5+
<dict>
6+
<key>title</key>
7+
<string>The Empty Hearse</string>
8+
<key>length</key>
9+
<string>1h 26m</string>
10+
<key>detail</key>
11+
<string>Two years after Shelock&apos;s &quot;death&quot;. Watson has moved on. But when Long is threatened by a terrorrist attack, Sherlock decides it&apos;s time to return.</string>
12+
<key>image</key>
13+
<string>sherlock</string>
14+
</dict>
15+
<dict>
16+
<key>title</key>
17+
<string>The Sign of Three</string>
18+
<key>length</key>
19+
<string>1h 26m</string>
20+
<key>detail</key>
21+
<string>While mortal danger stalks Watson&apos;s wedding reception, Sherlock faces his biggest challenge of all: delivering a best man&apos;s speech!</string>
22+
<key>image</key>
23+
<string>sherlock</string>
24+
</dict>
25+
<dict>
26+
<key>title</key>
27+
<string>His Last Vow</string>
28+
<key>length</key>
29+
<string>1h 29m</string>
30+
<key>detail</key>
31+
<string>A case of stoeln letters leads Sherlock Holmes to engage in a long conflict with the powerful Chales Augustus Magnussen, the Napolean of blackmail.</string>
32+
<key>image</key>
33+
<string>sherlock</string>
34+
</dict>
35+
<dict>
36+
<key>title</key>
37+
<string>The Abominable Bride</string>
38+
<key>length</key>
39+
<string>1h 29m</string>
40+
<key>detail</key>
41+
<string>In this special set in 1895, Holmes and Watson investigate a vengeful apparition in a wedding dress, reportedly the ghost of a suicide victim.</string>
42+
<key>image</key>
43+
<string>sherlock</string>
44+
</dict>
45+
</array>
46+
</plist>

0 commit comments

Comments
 (0)