Initial commit
This commit is contained in:
commit
c34c38fc03
9
.envrc
Normal file
9
.envrc
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
use flake ~/Projects/Nix/system#idris2
|
||||||
|
export PACK_DIR=~/Projects/Idris/.env/pack
|
||||||
|
export RAKUDIST_HOME=~/Projects/Idris/.env/raku
|
||||||
|
export ZEF_BIN_DIR=~/Projects/Idris/.env/raku/bin
|
||||||
|
export HEDGEHOG_COLOR=true
|
||||||
|
export RAKULIB=/home/nathan/Projects/Idris/iutils/lib
|
||||||
|
PATH_add ~/Projects/Idris/.env/pack/bin
|
||||||
|
PATH_add ~/Projects/Idris/.scripts/bin
|
||||||
|
PATH_add ~/Projects/Idris/.env/raku/bin
|
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
.DS_Store
|
||||||
|
.idea
|
||||||
|
*.log
|
||||||
|
tmp/
|
||||||
|
.tmp/
|
||||||
|
.direnv/
|
||||||
|
**/.precomp/
|
16
META6.json
Normal file
16
META6.json
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"name": "iutils",
|
||||||
|
"description": "Idris 2 utilities for testing, benchmarking, and documentation",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"perl": "6.d",
|
||||||
|
"authors": [
|
||||||
|
"Nathan McCarty <thatonelutenist@stranger.systems>"
|
||||||
|
],
|
||||||
|
"provides": {
|
||||||
|
"IUtils::IDEMode": "lib/IUtils/IDEMode.rakumod"
|
||||||
|
},
|
||||||
|
"bin": {
|
||||||
|
"iutils": "bin/iutils"
|
||||||
|
},
|
||||||
|
"resources": [ ],
|
||||||
|
}
|
3
bin/iutils
Executable file
3
bin/iutils
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env raku
|
||||||
|
use v6.d;
|
||||||
|
use IUtils::IDEMode;
|
1
lib/IUtils/IDEMode.rakumod
Normal file
1
lib/IUtils/IDEMode.rakumod
Normal file
|
@ -0,0 +1 @@
|
||||||
|
unit module IUtils::IDEMode;
|
Loading…
Reference in a new issue