source: EcnlProtoTool/trunk/mruby-1.2.0/README.md@ 270

Last change on this file since 270 was 270, checked in by coas-nagasima, 7 years ago

mruby版ECNLプロトタイピング・ツールを追加

File size: 3.6 KB
Line 
1[![Build Status][build-status-img]][travis-ci]
2
3## What is mruby
4
5mruby is the lightweight implementation of the Ruby language complying to (part
6of) the [ISO standard][ISO-standard]. Its syntax is Ruby 1.9 compatible.
7
8mruby can be linked and embedded within your application. We provide the
9interpreter program "mruby" and the interactive mruby shell "mirb" as examples.
10You can also compile Ruby programs into compiled byte code using the mruby
11compiler "mrbc". All those tools reside in the "bin" directory. "mrbc" is
12also able to generate compiled byte code in a C source file, see the "mrbtest"
13program under the "test" directory for an example.
14
15This achievement was sponsored by the Regional Innovation Creation R&D Programs
16of the Ministry of Economy, Trade and Industry of Japan.
17
18## How to get mruby
19
20The stable version 1.2.0 of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/archive/1.2.0.zip](https://github.com/mruby/mruby/archive/1.2.0.zip)
21
22The latest development version of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/zipball/master](https://github.com/mruby/mruby/zipball/master)
23
24The trunk of the mruby source tree can be checked out with the
25following command:
26
27 $ git clone https://github.com/mruby/mruby.git
28
29## mruby home-page
30
31The URL of the mruby home-page is: [http://www.mruby.org](http://www.mruby.org).
32
33## Mailing list
34
35We don't have mailing list, but you can use [GitHub issues](https://github.com/mruby/mruby).
36
37## How to compile and install (mruby and gems)
38
39See the [doc/guides/compile.md](doc/guides/compile.md) file.
40
41## Running Tests
42
43To run the tests, execute the following from the project's root directory.
44
45 $ make test
46
47Or
48
49 $ ruby ./minirake test
50
51## How to customize mruby (mrbgems)
52
53mruby contains a package manager called *mrbgems*. To create extensions
54in C and/or Ruby you should create a *GEM*. For a documentation of how to
55use mrbgems consult the file [doc/mrbgems/README.md](doc/mrbgems/README.md). For example code of
56how to use mrbgems look into the folder *examples/mrbgems/*.
57
58## License
59
60mruby is released under the [MIT License](MITL).
61
62## Note for License
63
64mruby has chosen a MIT License due to its permissive license allowing
65developers to target various environments such as embedded systems.
66However, the license requires the display of the copyright notice and license
67information in manuals for instance. Doing so for big projects can be
68complicated or troublesome. This is why mruby has decided to display "mruby
69developers" as the copyright name to make it simple conventionally.
70In the future, mruby might ask you to distribute your new code
71(that you will commit,) under the MIT License as a member of
72"mruby developers" but contributors will keep their copyright.
73(We did not intend for contributors to transfer or waive their copyrights,
74Actual copyright holder name (contributors) will be listed in the AUTHORS
75file.)
76
77Please ask us if you want to distribute your code under another license.
78
79## How to Contribute
80
81See the [contribution guidelines][contribution-guidelines], and then send a pull
82request to <http://github.com/mruby/mruby>. We consider you have granted
83non-exclusive right to your contributed code under MIT license. If you want to
84be named as one of mruby developers, please include an update to the AUTHORS
85file in your pull request.
86
87[ISO-standard]: http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=59579
88[build-status-img]: https://travis-ci.org/mruby/mruby.svg?branch=master
89[contribution-guidelines]: CONTRIBUTING.md
90[travis-ci]: https://travis-ci.org/mruby/mruby
Note: See TracBrowser for help on using the repository browser.