diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2019-12-20 22:36:44 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2019-12-21 22:11:08 +0900 |
| commit | de17f63b4567cad3b02f1f1f9386eaf8dd704bbe (patch) | |
| tree | 222d4fa4c2bcdc982c0afa32855df56e43e7798e /doc/guides | |
| parent | fee3c1c2422f74839419edf296651a3570cded61 (diff) | |
| download | mruby-de17f63b4567cad3b02f1f1f9386eaf8dd704bbe.tar.gz mruby-de17f63b4567cad3b02f1f1f9386eaf8dd704bbe.zip | |
Abandon `minirake`. Use `rake` for compilation; fix #4884
Diffstat (limited to 'doc/guides')
| -rw-r--r-- | doc/guides/compile.md | 8 | ||||
| -rw-r--r-- | doc/guides/mrbgems.md | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/doc/guides/compile.md b/doc/guides/compile.md index 6a093310a..ba23fcfb4 100644 --- a/doc/guides/compile.md +++ b/doc/guides/compile.md @@ -32,10 +32,10 @@ All tools necessary to compile mruby can be set or modified here. In case you want to maintain an additional *build_config.rb* you can define a customized path using the *$MRUBY_CONFIG* environment variable. -To compile just call `./minirake` inside of the mruby source root. To -generate and execute the test tools call `./minirake test`. To clean -all build files call `./minirake clean`. To see full command line on -build, call `./minirake -v`. +To compile just call `rake` inside of the mruby source root. To +generate and execute the test tools call `rake test`. To clean +all build files call `rake clean`. To see full command line on +build, call `rake -v`. ## Build Configuration diff --git a/doc/guides/mrbgems.md b/doc/guides/mrbgems.md index 184f62954..ffbf17f26 100644 --- a/doc/guides/mrbgems.md +++ b/doc/guides/mrbgems.md @@ -45,8 +45,8 @@ conf.gem mgem: 'mruby-redis', checksum_hash: '3446d19fc4a3f9697b5ddbf2a904f301c4 If there is missing dependencies, mrbgem dependencies solver will reference mrbgem from core or mgem-list. -To pull all gems from remote GIT repository on build, call ```./minirake -p```, -or ```./minirake --pull-gems```. +To pull all gems from remote GIT repository on build, call ```rake -p```, +or ```rake --pull-gems```. NOTE: `:bitbucket` option supports only git. Hg is unsupported in this version. @@ -235,7 +235,7 @@ So it is recommended not to put GEM's local header files on include/. These exports are retroactive. For example: when B depends to C and A depends to B, A will get include paths exported by C. -Exported include_paths are automatically appended to GEM local include_paths by Minirake. +Exported include_paths are automatically appended to GEM local include_paths by rake. You can use `spec.export_include_paths` accessor if you want more complex build. |
