summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2014-02-26Merge pull request #1747 from cubicdaiya/issues/use_mrb_intern_litYukihiro "Matz" Matsumoto
use mrb_intern_lit instead of mrb_intern_cstr for C string literals
2014-02-26Merge pull request #1749 from take-cheeze/file_line_testYukihiro "Matz" Matsumoto
add test for __LINE__ and __FILE__
2014-02-26Merge pull request #1744 from cubicdaiya/feature/introduce_mrb_str_cat_litYukihiro "Matz" Matsumoto
Introduce mrb_str_cat_lit
2014-02-26Merge pull request #1743 from cubicdaiya/issues/use_mrb_str_new_litYukihiro "Matz" Matsumoto
Use mrb_str_new_lit instead of mrb_str_new for C string literals
2014-02-26add test for __LINE__ and __FILE__take_cheeze
2014-02-26use mrb_intern_lit instead of mrb_intern_cstr for C string literalscubicdaiya
2014-02-26use mrb_str_cat_lit() more widelycubicdaiya
2014-02-26introduce mrb_str_cat_lit() to create strings from C string litralscubicdaiya
2014-02-26use mrb_str_new_lit instead of mrb_str_new for C string literalscubicdaiya
2014-02-26Merge pull request #1739 from take-cheeze/clang_cxxYukihiro "Matz" Matsumoto
Specialize C++ compiler in clang toolchain.
2014-02-26Merge pull request #1741 from suzukaze/update-readmeYukihiro "Matz" Matsumoto
Update README.md; The URL of the mruby home-page is accessible.
2014-02-26Merge pull request #1740 from tmash06/fix_missing_spacesYukihiro "Matz" Matsumoto
fix missing spaces.
2014-02-26Update README.md; The URL of the mruby home-page is accessible.Jun Hiroe
2014-02-26Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-02-26resolve conflictYukihiro "Matz" Matsumoto
2014-02-26fix missing spaces.Tatsuya Matsumoto
2014-02-25specialize C++ compiler in clang toolchaintake_cheeze
2014-02-25Merge pull request #1737 from chasonr/Random-static-dataYukihiro "Matz" Matsumoto
Implement default Random instance.
2014-02-25Merge pull request #1738 from cubicdaiya/issues/optim_mrb_time_zoneYukihiro "Matz" Matsumoto
small-optimization for mrb_time_zone
2014-02-25small-optimization2 for mrb_time_zonecubicdaiya
mrb_str_new_static is more efficient than mrb_str_new in this case.
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-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 -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