Skip to content

Commit 9c6df4b

Browse files
committed
fix: new gs
1 parent 589a004 commit 9c6df4b

File tree

4 files changed

+9
-13
lines changed

4 files changed

+9
-13
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,30 @@
33
> String manipulation
44
55
This is a string library which is built for [goboscript](https://github.com/aspizu/goboscript).
6-
It is based on [the stdlib implementation](https://github.com/goboscript/std/), but it is designed to be used with [inflator](https://github.com/faretek1/inflator).
6+
It is based on [the stdlib implementation](https://github.com/goboscript/std/), but it is designed to be used with [inflator](https://github.com/inflated-goboscript/inflator).
77

88
## Credits
99

1010
- aspizu for original version in stdlib
1111

1212
## Installation
1313

14-
Make sure you have inflator installed
14+
Make sure you have inflator installed. It's installable from the gtp.
1515

16-
`inflate install https://github.com/FAReTek1/string`
16+
`inflate install string`
1717

1818
add string to your `inflator.toml` config:
1919
```toml
2020
[dependencies]
2121
# ...
22-
string = "https://github.com/FAReTek1/string"
22+
string = "string"
2323
```
2424

2525
## Development
2626

2727
use `inflate install -e .`:
2828

29-
1. clone the respository: `git clone https://github.com/FAReTek1/string`
29+
1. clone the respository: `git clone https://github.com/inflated-goboscript/string`
3030
2. `cd string`
3131
3. `inflate install -e .`
3232
4. `cd test`

inflator.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# inflator.toml syntax documentation: https://github.com/faretek1/inflator#inflator
1+
# inflator.toml syntax documentation: https://github.com/inflated-goboscript/inflator#inflator
22
name = 'string'
33
version = "v0.0.0"
44
username = "inflated-goboscript"

string.gs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
%if not _FARETEK_INCLUDE_STRING
2-
%define _FARETEK_INCLUDE_STRING
3-
41
%define WHITESPACE " \t\n\r"
52
%define ASCII_LOWERCASE "abcdefghijklmnopqrstuvwxyz"
63
%define ASCII_UPPERCASE "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
@@ -486,4 +483,3 @@ func rjust(string, len, char = " ") {
486483
}
487484
return ret;
488485
}
489-
%endif

test/inflator.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# inflator.toml syntax documentation: https://github.com/faretek1/inflator#inflator
1+
# inflator.toml syntax documentation: https://github.com/inflated-goboscript/inflator#inflator
22
name = 'test'
3-
username = "FAReTek1"
3+
username = "inflated-goboscript"
44

55
[dependencies]
6-
assert = "https://github.com/FAReTek1/assert"
6+
assert = "assert"
77
string = ".."

0 commit comments

Comments
 (0)