summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2014-02-25small-optimization for mrb_time_zonecubicdaiya
Using mrb_str_new instead of mrb_str_new_cstr
2014-02-25Implement default Random instance.chasonr
Previously, the default random number generator was implemented using static storage. This storage is common to all instances of mruby in a process, and use of the default random number generator in one instance will perturb the default random number generator in other instances. It is also not thread safe. With this change, the default random number generator is defined as Random::DEFAULT, as it is in CRuby.
2014-02-25quiet compiler.Tomoyuki Sahara
2014-02-25remove unused.Tomoyuki Sahara
2014-02-25Merge branch 'master' of github.com:iij/mruby-ioTomoyuki Sahara
2014-02-25add IO.readTomoyuki Sahara
2014-02-25clarify fallthrough in the switch statementYukihiro "Matz" Matsumoto
2014-02-25initialize sname before interningYukihiro "Matz" Matsumoto
2014-02-25Merge pull request #1736 from take-cheeze/doc_updateYukihiro "Matz" Matsumoto
add ruby and C code execution order note
2014-02-25add ruby and C code execution order notetake_cheeze
2014-02-25Merge pull request #1732 from cho45/depend-build-configYukihiro "Matz" Matsumoto
Always include build_config.rb to compile dependency.
2014-02-25Merge pull request #1733 from take-cheeze/mrb_stringizeYukihiro "Matz" Matsumoto
add MRB_ prefix to STRINGIZE macro
2014-02-25Merge pull request #1734 from kyab/add_galileo_configYukihiro "Matz" Matsumoto
Add target example for Intel Galileo board
2014-02-25Merge pull request #1735 from h2so5/limit-significand-lengthYukihiro "Matz" Matsumoto
limit preserved significand length
2014-02-25avoid accessing uninitialized string; ref ac936fcYukihiro "Matz" Matsumoto
2014-02-25Merge pull request #1721 from take-cheeze/d_format_specYukihiro "Matz" Matsumoto
add 'd' format specifier in mrb_get_args and mruby-random gem improvement
2014-02-24Add target example for Intel Galileo boardkyab
2014-02-24add MRB_ prefix to STRINGIZE macrotake_cheeze
2014-02-24Merge pull request #1731 from jeremyong/masterYukihiro "Matz" Matsumoto
Issue minor corrections and updates to INSTALL file.
2014-02-24Merge pull request #1730 from bggd/patch-3Yukihiro "Matz" Matsumoto
Add error for C99 style variable declaration on travis-ci
2014-02-24Always include build_config.rb to compile dependency.cho45
build_config.rb modifies `cc.defines` (eg. `DISABLE_GEMS`) so files depending on such flags should be rebuilt. Ref. (Failing scenario): https://gist.github.com/cho45/9181191
2014-02-23Issue minor corrections and updates to INSTALL file.Jeremy Ong
2014-02-24add Socket.getaddrinfo.Tomoyuki Sahara
2014-02-24add -Werror=declaration-after-statementbggd
2014-02-24remove -Werror=declaration-after-statementbggd
2014-02-24limit preserved significand lengthh2so5
2014-02-24Merge pull request #1727 from bggd/patch-2Yukihiro "Matz" Matsumoto
Add warning for C89-style variable declarations
2014-02-24Merge pull request #1729 from take-cheeze/customizable_build_dirYukihiro "Matz" Matsumoto
Make mruby build directory customizable.
2014-02-23Merge pull request #1728 from kyab/fix_unused_error_mirbYukihiro "Matz" Matsumoto
Fix unused function warning when readline enabled (mirb)
2014-02-23support custom build_dir in CrossBuildtake_cheeze
2014-02-23Fix unused function warning when readline enabled (mirb)kyab
2014-02-23move declaration to the top of the block; ref #1727Yukihiro "Matz" Matsumoto
2014-02-23make mruby build directory customizabletake_cheeze
2014-02-23Add warning for C89-style variable declarationsbggd
2014-02-22add src/error.h for compatibility reasonYukihiro "Matz" Matsumoto
2014-02-22compatibility support (mruby/mruby, iij/mruby and 1.0.0)Akira Yumiyama
- refs https://github.com/mruby/mruby/commit/36e234aa377d50d8ee425c7868e0651cf78e85cf
2014-02-22Merge pull request #1724 from h2so5/f2s-significandYukihiro "Matz" Matsumoto
preserve significands in float-string conversion
2014-02-22preserve significands in float-string conversionh2so5
2014-02-22powered num may be infinite in float-string conversionYukihiro "Matz" Matsumoto
2014-02-22Merge pull request #1722 from take-cheeze/hash_ext_arena_fixYukihiro "Matz" Matsumoto
Fix possible arena overflow in mruby-hast-ext.
2014-02-22Merge pull request #1723 from akuroda/string_test_cap_downYukihiro "Matz" Matsumoto
add tests for String#capitalize!, String#downcase!, and String#upcase!
2014-02-22fix the position of capitalize! and downcast!, and add test for upcase!Akira Kuroda
2014-02-22add test(requires MRB_GC_FIXED_ARENA enabled)take_cheeze
2014-02-22add tests for String#capitalize! and String#downcase!Akira Kuroda
2014-02-22fix possible arena overflowtake_cheeze
2014-02-21use 'd' format spec to get Random objecttake_cheeze
2014-02-21add 'd' format specifier to get data pointer directly from mrb_get_argstake_cheeze
2014-02-21use mrb_intern_lit in mruby-randomtake_cheeze
2014-02-21Merge pull request #1720 from take-cheeze/move_error_hYukihiro "Matz" Matsumoto
move src/error.h to include/mruby/error.h
2014-02-20move src/error.h to include/mruby/error.htake_cheeze