Brian Gernhardt
Brian Gernhardt
`include_root_in_json` affects the serialization of each object, so the controller does something akin to: ``` ruby def index render json: Fruit.all end ``` And the result is: `[{"apple": {"id": 1}},...
Very similar issue on Ubuntu 18.04.6 LTS: ``` jless: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.28' not found (required by jless) jless: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.29' not found (required by jless) ```
I had not seen that syntax. Very useful. However I'd argue that `obj.'!meth'` compiling in Winxed but doing nothing useful in the resultant PIR could be considered a bug.
Ticket can now be found at parrot/parrot#596 And here's the original code with indenting: ``` class Foo { function init[vtable] { say("Foo init"); } function hello() { say(FUNCTION); } }...
This is also very helpful with the presets, as you can download them to individual files and then include them in your main config file instead of having to manually...
I got the tests to build by leaving a `kernel/.cargo/config.toml` file: ``` [build] target = "x86_64-unknown-none" ``` Actually running the tests runs into further issues: namely that it tries to...
Yup! I added the following runner to my OS workspace: ``` // runner/src/main.rs use std::path::PathBuf; fn main() { let mut args = std::env::args_os().skip(1); // Skip runner name let mut cmd...