Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOC] Fix yet another dead link to Ragel #510

Merged
merged 1 commit into from
Jan 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README-json-jruby.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Its path must be set on the `jruby.dir` property of
`nbproject/project.properties` (defaults to `../jruby`).

Additionally, you'll need [Ant](http://ant.apache.org/), and
[Ragel](http://www.cs.queensu.ca/~thurston/ragel/) 6.4 or greater.
[Ragel](http://www.colm.net/open-source/ragel/) 6.4 or greater.

Then, from the folder where the sources are located, type:

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ will be two variants available:
extensions, which are both part of the ruby standard library.
* The quite a bit faster native extension variant, which is in parts
implemented in C or Java and comes with its own unicode conversion
functions and a parser generated by the ragel state machine compiler
http://www.colm.net/open-source/ragel/ .
functions and a parser generated by the [Ragel] state machine compiler.

Both variants of the JSON generator generate UTF-8 character sequences by
default. If an :ascii\_only option with a true value is given, they escape all
Expand Down Expand Up @@ -71,8 +70,7 @@ with:
## Compiling the extensions yourself

If you want to create the `parser.c` file from its `parser.rl` file or draw nice
graphviz images of the state machines, you need ragel from:
http://www.colm.net/open-source/ragel/
graphviz images of the state machines, you need [Ragel].

## Usage

Expand Down Expand Up @@ -423,3 +421,5 @@ The latest version of this library can be downloaded at
Online Documentation should be located at

* https://www.rubydoc.info/gems/json

[Ragel]: http://www.colm.net/open-source/ragel/