• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

benchmark/H03-May-2022-472361

doc/H03-May-2022-1,9091,451

examples/H03-May-2022-687430

include/H03-May-2022-5,2462,665

lib/H03-May-2022-1,4301,178

mrbgems/H03-May-2022-44,77934,777

mrblib/H03-May-2022-1,7261,021

src/H03-May-2022-23,20117,648

tasks/H03-May-2022-842727

test/H03-May-2022-7,4265,843

.gitignoreH A D13-Aug-2019255 3530

.gitlab-ci.ymlH A D25-Nov-201887.4 KiB3,2153,214

.travis.ymlH A D13-Aug-2019237 2015

.yardoptsH A D13-Aug-2019235 1815

AUTHORSH A D13-Aug-20191 KiB4543

CONTRIBUTING.mdH A D25-Nov-20182.3 KiB6946

LEGALH A D13-Aug-2019179 74

LICENSEH A D13-Aug-20191 KiB2116

MakefileH A D25-Nov-2018277 1810

NEWSH A D25-Nov-2018343 147

README.mdH A D13-Aug-20193.8 KiB9361

RakefileH A D13-Aug-20194.6 KiB169139

TODOH A D13-Aug-2019185 95

appveyor.ymlH A D13-Aug-20191 KiB4329

appveyor_config.rbH A D13-Aug-2019929 5136

build_config.rbH A D13-Aug-20193.7 KiB15330

minirakeH A D13-Aug-201915.8 KiB606460

mruby-source.gemspecH A D25-Nov-2018615 1915

travis_config.rbH A D13-Aug-20191.1 KiB5439

README.md

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 2.0.1 of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/archive/2.0.1.zip](https://github.com/mruby/mruby/archive/2.0.1.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
29You can also install and compile mruby using [ruby-install](https://github.com/postmodern/ruby-install), [ruby-build](https://github.com/rbenv/ruby-build) or [rvm](https://github.com/rvm/rvm).
30
31## mruby home-page
32
33The URL of the mruby home-page is: [http://www.mruby.org](http://www.mruby.org).
34
35## Mailing list
36
37We don't have a mailing list, but you can use [GitHub issues](https://github.com/mruby/mruby).
38
39## How to compile and install (mruby and gems)
40
41See the [doc/guides/compile.md](doc/guides/compile.md) file.
42
43## Running Tests
44
45To run the tests, execute the following from the project's root directory.
46
47    $ make test
48
49Or
50
51    $ ruby ./minirake test
52
53## How to customize mruby (mrbgems)
54
55mruby contains a package manager called *mrbgems*. To create extensions
56in C and/or Ruby you should create a *GEM*. For a documentation of how to
57use mrbgems consult the file [doc/guides/mrbgems.md](doc/guides/mrbgems.md). For example code of
58how to use mrbgems look into the folder *examples/mrbgems/*.
59
60## License
61
62mruby is released under the [MIT License](LICENSE).
63
64## Note for License
65
66mruby has chosen a MIT License due to its permissive license allowing
67developers to target various environments such as embedded systems.
68However, the license requires the display of the copyright notice and license
69information in manuals for instance. Doing so for big projects can be
70complicated or troublesome.  This is why mruby has decided to display "mruby
71developers" as the copyright name to make it simple conventionally.
72In the future, mruby might ask you to distribute your new code
73(that you will commit,) under the MIT License as a member of
74"mruby developers" but contributors will keep their copyright.
75(We did not intend for contributors to transfer or waive their copyrights,
76Actual copyright holder name (contributors) will be listed in the AUTHORS
77file.)
78
79Please ask us if you want to distribute your code under another license.
80
81## How to Contribute
82
83See the [contribution guidelines][contribution-guidelines], and then send a pull
84request to <http://github.com/mruby/mruby>.  We consider you have granted
85non-exclusive right to your contributed code under MIT license.  If you want to
86be named as one of mruby developers, please include an update to the AUTHORS
87file in your pull request.
88
89[ISO-standard]: http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=59579
90[build-status-img]: https://travis-ci.org/mruby/mruby.svg?branch=master
91[contribution-guidelines]: CONTRIBUTING.md
92[travis-ci]: https://travis-ci.org/mruby/mruby
93