Ignore:
Timestamp:
Jul 9, 2020, 8:51:43 AM (4 years ago)
Author:
coas-nagasima
Message:

mrubyを2.1.1に更新

Location:
EcnlProtoTool/trunk/mruby-2.1.1
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • EcnlProtoTool/trunk/mruby-2.1.1/README.md

    r331 r439  
    44
    55mruby is the lightweight implementation of the Ruby language complying to (part
    6 of) the [ISO standard][ISO-standard]. Its syntax is Ruby 1.9 compatible.
     6of) the [ISO standard][ISO-standard]. Its syntax is Ruby 2.x compatible.
    77
    88mruby can be linked and embedded within your application.  We provide the
     
    1818## How to get mruby
    1919
    20 The stable version 1.3.0 of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/archive/1.3.0.zip](https://github.com/mruby/mruby/archive/1.3.0.zip)
     20The stable version 2.1.1 of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/archive/2.1.1.zip](https://github.com/mruby/mruby/archive/2.1.1.zip)
    2121
    2222The 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)
     
    3131## mruby home-page
    3232
    33 The URL of the mruby home-page is: [http://www.mruby.org](http://www.mruby.org).
     33The URL of the mruby home-page is: https://mruby.org.
    3434
    3535## Mailing list
    3636
    37 We don't have a mailing list, but you can use [GitHub issues](https://github.com/mruby/mruby).
     37We don't have a mailing list, but you can use [GitHub issues](https://github.com/mruby/mruby/issues).
    3838
    3939## How to compile and install (mruby and gems)
    4040
    41 See the [doc/guides/compile.md](doc/guides/compile.md) file.
     41See the [compile.md](https://github.com/mruby/mruby/blob/master/doc/guides/compile.md) file.
    4242
    4343## Running Tests
     
    4545To run the tests, execute the following from the project's root directory.
    4646
    47     $ make test
     47    $ rake test
    4848
    49 Or
     49## Building documentation
    5050
    51     $ ruby ./minirake test
     51There are two sets of documentation in mruby: the mruby API (generated by yard) and C API (Doxygen)
     52
     53To build both of them, simply go
     54
     55    rake doc
     56
     57You can also view them in your browser
     58
     59    rake view_api
     60    rake view_capi
    5261
    5362## How to customize mruby (mrbgems)
     
    5564mruby contains a package manager called *mrbgems*. To create extensions
    5665in C and/or Ruby you should create a *GEM*. For a documentation of how to
    57 use mrbgems consult the file [doc/guides/mrbgems.md](doc/guides/mrbgems.md). For example code of
    58 how to use mrbgems look into the folder *examples/mrbgems/*.
     66use mrbgems consult the file [mrbgems.md](https://github.com/mruby/mruby/blob/master/doc/guides/mrbgems.md).
     67For example code of how to use mrbgems look into the folder *examples/mrbgems/*.
    5968
    6069## License
    6170
    62 mruby is released under the [MIT License](MITL).
     71mruby is released under the [MIT License](https://github.com/mruby/mruby/blob/master/LICENSE).
    6372
    6473## Note for License
     
    8998[ISO-standard]: http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=59579
    9099[build-status-img]: https://travis-ci.org/mruby/mruby.svg?branch=master
    91 [contribution-guidelines]: CONTRIBUTING.md
     100[contribution-guidelines]: https://github.com/mruby/mruby/blob/master/CONTRIBUTING.md
    92101[travis-ci]: https://travis-ci.org/mruby/mruby
Note: See TracChangeset for help on using the changeset viewer.