Skip to content

Commit 5366537

Browse files
committed
Initial commit
Base project created with `conche init Hello --with-cli --with-tests`
0 parents  commit 5366537

File tree

5 files changed

+26
-0
lines changed

5 files changed

+26
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.conche/

Hello.podspec.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "Hello",
3+
"version": "1.0.0",
4+
"source_files": "Hello/*.swift",
5+
"entry_points": {
6+
"cli": {
7+
"hello": "bin/hello.swift"
8+
}
9+
},
10+
"test_specification": {
11+
"source_files": "HelloSpecs/*.swift",
12+
"dependencies": {
13+
"Spectre": ["~> 0.5.0"]
14+
}
15+
}
16+
}

Hello/Hello.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// Hello

HelloSpecs/HelloSpec.swift

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import Spectre
2+
3+
describe("Hello") {
4+
$0.it("should be implemented") {
5+
throw failure("Not Implemented")
6+
}
7+
}

bin/hello.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
print("Hello Hello")

0 commit comments

Comments
 (0)