Skip to content

Commit f10ed38

Browse files
authored
Merge pull request #12 from bow-swift/documentation
Create initial structure for documentation
2 parents ef29a22 + ee17090 commit f10ed38

File tree

38 files changed

+746
-3
lines changed

38 files changed

+746
-3
lines changed

.gitignore

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ build/
77
DerivedData
88
**/.DS_Store
99
api
10-
**/xcuserdata
11-
**/xcshareddata
10+
xcuserdata/
11+
xcshareddata/
1212

1313
## Various settings
1414
*.pbxuser
@@ -33,4 +33,7 @@ Carthage/
3333
.build/
3434
.swiftpm
3535
Pods/
36-
Package.resolved
36+
Podfile.lock
37+
38+
## nef
39+
**/*/nef
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>en</string>
7+
<key>CFBundleExecutable</key>
8+
<string>launcher</string>
9+
<key>CFBundleIconFile</key>
10+
<string>AppIcon</string>
11+
<key>CFBundleIconName</key>
12+
<string>AppIcon</string>
13+
<key>CFBundleIdentifier</key>
14+
<string>com.fortysevendeg.nef</string>
15+
<key>CFBundleInfoDictionaryVersion</key>
16+
<string>6.0</string>
17+
<key>CFBundleSupportedPlatforms</key>
18+
<array>
19+
<string>MacOSX</string>
20+
</array>
21+
<key>LSApplicationCategoryType</key>
22+
<string>public.app-category.developer-tools</string>
23+
<key>LSMinimumSystemVersion</key>
24+
<string>10.14</string>
25+
<key>NSHumanReadableCopyright</key>
26+
<string>Copyright © 2019 The Bow Authors. All rights reserved.</string>
27+
</dict>
28+
</plist>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
//: [Previous](@previous)
2+
3+
import Foundation
4+
5+
var str = "Hello, playground"
6+
7+
//: [Next](@next)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
//: [Previous](@previous)
2+
3+
import Foundation
4+
5+
var str = "Hello, playground"
6+
7+
//: [Next](@next)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import UIKit
2+
3+
var str = "Hello, playground"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Timeline
3+
version = "3.0">
4+
<TimelineItems>
5+
</TimelineItems>
6+
</Timeline>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
//: [Previous](@previous)
2+
3+
import Foundation
4+
5+
var str = "Hello, playground"
6+
7+
//: [Next](@next)
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<playground version='6.0' target-platform='ios'>
3+
<pages>
4+
<page name='Adding the module to your project'/>
5+
<page name='Running a network request'/>
6+
<page name='Customizing the configuration'/>
7+
<page name='Testing your network calls'/>
8+
</pages>
9+
</playground>

0 commit comments

Comments
 (0)