summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--doc/mrbgems/README.md2
-rwxr-xr-xminirake4
3 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 28e2ffc71..9bcffacf7 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
This is a preliminary release for internal team review.
The URLs and addresses described below are not available yet.
The official release will be announced later.
- Any suggestion for modification is welcome.
+ Any suggestions for modification are welcome.
Delays in replies are to be expected. Sorry in advance.
## What's mruby
@@ -113,4 +113,4 @@ Please ask us if you want to distribute your code under another license.
See the [contribution guidelines](https://github.com/mruby/mruby/blob/master/CONTRIBUTING.md)
then send a pull request to <http://github.com/mruby/mruby>. We consider you have granted
non-exclusive right to your contributed code under MIT license. If you want to be named
-as one of mruby developers, include update to the AUTHORS file in your pull request.
+as one of mruby developers, please include an update to the AUTHORS file in your pull request.
diff --git a/doc/mrbgems/README.md b/doc/mrbgems/README.md
index 07f7002fb..881fbb228 100644
--- a/doc/mrbgems/README.md
+++ b/doc/mrbgems/README.md
@@ -26,7 +26,7 @@ A remote GIT repository location for a GEM is also supported:
conf.gem :bitbucket => 'mruby/mrbgems-example', :branch => 'master'
To pull all gems from remote GIT repository on build, call ```./minirake -p```,
-or ```./minirake --pull_gems```.
+or ```./minirake --pull-gems```.
NOTE: `:bitbucket` option supports only git. Hg is unsupported in this version.
diff --git a/minirake b/minirake
index 69d447a15..e48ca1306 100755
--- a/minirake
+++ b/minirake
@@ -317,7 +317,7 @@ class RakeApp
"Require MODULE before executing rakefile."],
['--tasks', '-T', GetoptLong::NO_ARGUMENT,
"Display the tasks and dependencies, then exit."],
- ['--pull_gems','-p', GetoptLong::NO_ARGUMENT,
+ ['--pull-gems','-p', GetoptLong::NO_ARGUMENT,
"Pull all git mrbgems."],
['--trace', '-t', GetoptLong::NO_ARGUMENT,
"Turn on invoke/execute tracing."],
@@ -403,7 +403,7 @@ class RakeApp
require value
when '--tasks'
$show_tasks = true
- when '--pull_gems'
+ when '--pull-gems'
$pull_gems = true
when '--trace'
$trace = true