From fb9bba34fbdcff1a471e0fa2b6994d044a4e2fef Mon Sep 17 00:00:00 2001 From: HASUMI Hitoshi Date: Mon, 17 Jan 2022 22:36:41 +0900 Subject: [PATCH] Fix tree of mruby-bin-example --- doc/guides/mrbgems.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/guides/mrbgems.md b/doc/guides/mrbgems.md index 03f8829e1..7649f40d2 100644 --- a/doc/guides/mrbgems.md +++ b/doc/guides/mrbgems.md @@ -397,21 +397,21 @@ binary gems, to separate normal gems and binary gems. ``` +- mruby-bin-example/ | - +- README.md (Optional) + +- README.md (Optional) | +- bintest/ | | - | +- example.rb <- Test code for binary gem + | +- example.rb <- Test code for binary gem | - +- mrbgem.rake <- Gem specification + +- mrbgem.rake <- Gem specification | - +- mrblib/ <- Source for Ruby extension (Optional) + +- mrblib/ <- Source for Ruby extension (Optional) | - +- src/ <- Source for C extension (Optional) + +- src/ <- Source for C extension (Optional) | +- tools/ | - +- example/ <- Executable name directory - | - +- example.c <- Source for Executable (includes main) + +- example/ <- Executable name directory + | + +- example.c <- Source for Executable (includes main) ```