Skip to content

Commit b502df7

Browse files
committed
basic project initialization
1 parent 430eb16 commit b502df7

File tree

3 files changed

+63
-0
lines changed

3 files changed

+63
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,6 @@ build-iPhoneSimulator/
5454

5555
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
5656
# .rubocop-https?--*
57+
58+
lib/
59+
bin/

shard.lock

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
version: 2.0
2+
shards:
3+
admiral:
4+
git: https://github.com/jwaldrip/admiral.cr.git
5+
version: 1.12.1
6+
7+
ameba:
8+
git: https://github.com/crystal-ameba/ameba.git
9+
version: 1.6.4
10+
11+
ansi-escapes:
12+
git: https://github.com/gtramontina/ansi-escapes.cr.git
13+
version: 1.0.0
14+
15+
baked_file_system:
16+
git: https://github.com/schovi/baked_file_system.git
17+
version: 0.10.0
18+
19+
dotenv:
20+
git: https://github.com/gdotdesign/cr-dotenv.git
21+
version: 1.0.0
22+
23+
markd:
24+
git: https://github.com/icyleaf/markd.git
25+
version: 0.5.0
26+

shard.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: moonscript
2+
3+
version: 1.0.0
4+
license: GNU
5+
crystal: ~> 1.7
6+
7+
authors:
8+
- Krisna PRanav
9+
10+
dependencies:
11+
baked_file_system:
12+
github: schovi/baked_file_system
13+
version: ~> 0.10.0
14+
admiral:
15+
github: jwaldrip/admiral.cr
16+
version: ~> 1.12.1
17+
dotenv:
18+
github: gdotdesign/cr-dotenv
19+
version: ~> 1.0.0
20+
markd:
21+
github: icyleaf/markd
22+
version: ~> 0.5.0
23+
ansi-escapes:
24+
github: gtramontina/ansi-escapes.cr
25+
version: ~> 1.0.0
26+
27+
development_dependencies:
28+
ameba:
29+
github: crystal-ameba/ameba
30+
version: ~> 1.6.4
31+
32+
targets:
33+
moonscript:
34+
main: src/moonscript.cr

0 commit comments

Comments
 (0)