diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2016-06-14 19:10:04 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2016-06-14 19:10:04 +0900 |
| commit | a8af43f61e3d8421e0fb2daa2f681baf3fdf5698 (patch) | |
| tree | 8341796506184b576fc1678757e1401d23d2be09 | |
| parent | 09b11850a5df44d8e0ba5d031c57146e0c41547b (diff) | |
| parent | 481aa31f93ba4d349be8a8e8964b419777295d1c (diff) | |
| download | mruby-a8af43f61e3d8421e0fb2daa2f681baf3fdf5698.tar.gz mruby-a8af43f61e3d8421e0fb2daa2f681baf3fdf5698.zip | |
Merge pull request #3162 from udzura/patch-1
Update doc, write about add_test_dependency
| -rw-r--r-- | doc/guides/mrbgems.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/guides/mrbgems.md b/doc/guides/mrbgems.md index f75231f71..258f405b5 100644 --- a/doc/guides/mrbgems.md +++ b/doc/guides/mrbgems.md @@ -153,6 +153,9 @@ MRuby::Gem::Specification.new('c_and_ruby_extension_example') do |spec| # Use latest mruby-onig-regexp from github. (version requirements can be omitted) spec.add_dependency('mruby-onig-regexp', :github => 'mattn/mruby-onig-regexp') + + # You can add extra mgems active only on test + spec.add_test_dependency('mruby-process', :github => 'iij/mruby-process') end ``` |
