summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2014-02-14Merge pull request #1701 from cremno/do-not-use-mrb_str_cat2Yukihiro "Matz" Matsumoto
mrb_str_cat2: deprecated since 0cedf8f
2014-02-13mrb_str_cat2: deprecated since 0cedf8fcremno
2014-02-13remove direct inclusion of mruby/version.h from version.c; #1698Yukihiro "Matz" Matsumoto
2014-02-12include mruby/version.h in mruby.hTomoyuki Sahara
2014-02-12Merge pull request #1697 from cremno/array-changesYukihiro "Matz" Matsumoto
array implementation: several small changes
2014-02-12Merge pull request #1694 from cremno/rakefile-mkdir-bin-pathYukihiro "Matz" Matsumoto
Rakefile: make bin directory
2014-02-12Merge pull request #1695 from cremno/clang-and-icl-define-direct-threadedYukihiro "Matz" Matsumoto
Clang and ICC/ICL: define DIRECT_THREADED
2014-02-12Merge pull request #1693 from cremno/mruby-math-rm-cygwin-compatYukihiro "Matz" Matsumoto
mruby-math: remove Cygwin compatibility macros
2014-02-12array implementation: several small changescremno
src/array.c: - make various functions without declaration in the mruby headers static - removed all uncessary int casts and two useless comments mrb_ary_new_from_values: move to similar functions mrb_check_array_type: fix indentation include/mruby/array.h: mrb_shared_array: padding (default "mrbconf.h" on an usual 64-bit system) sizeof(mrb_int)==sizeof(int)==4 && sizeof(mrb_value*)==8 both: mrb_ary_aget: remove declaration in header and make static nobody uses it which is not surprising since it has 1 req arg! mrb_assoc_new: small optimization and move to similar functions mrb_ary_len: re-implement as static inline function (it is used by mrbgems) programmers should directly use RARRAY_LEN instead
2014-02-12Rakefile: make bin directorycremno
2014-02-12 mruby-math: remove Cygwin compatibility macroscremno
nan: The first non-test release of Cygwin 1.5.x was over a decade ago: <http://cygwin.com/ml/cygwin-announce/2003-09/msg00001.html> log/log10: This workaround is not needed anymore (1.2.6.1, 1.3 - both over 6 years ago): <https://sourceware.org/cgi-bin/cvsweb.cgi/src/newlib/libm/math/w_log.c?cvsroot=src>
2014-02-11Clang and ICC/ICL: define DIRECT_THREADEDcremno
This is most likely only needed on Windows be- cause __GNUC__ is not defined by both compilers. It might fail with some unusual configurations. If that is the case, feel free to open an issue.
2014-02-11add RUBY_ENGINE; ref #576Yukihiro "Matz" Matsumoto
2014-02-10resolve conflict in travis_config.rbYukihiro "Matz" Matsumoto
2014-02-10Merge pull request #1692 from Paxa/Kernel_global_variablesYukihiro "Matz" Matsumoto
Fix Kernel#global_variables for $1-$9
2014-02-09Fix Kernel#global_variables for $1-$9Pavel
2014-02-09initialize ci->stackent at the top; #1691Yukihiro "Matz" Matsumoto
2014-02-09Merge branch 'original2' of https://github.com/miura1729/mruby into ↵Yukihiro "Matz" Matsumoto
miura1729-original2
2014-02-09Merge pull request #1674 from cremno/mrb_bool-FALSE-TRUEYukihiro "Matz" Matsumoto
use mrb_bool, FALSE and TRUE more
2014-02-09Store raw stack address in callinfo instead of offset from stbasMiura Hideki
2014-02-08forget to add function prototypesYukihiro "Matz" Matsumoto
2014-02-08Merge pull request #1689 from Bovi-Li/remove-noticeYukihiro "Matz" Matsumoto
Remove *very early version* notice
2014-02-08Merge pull request #1690 from bovi/patch-2Yukihiro "Matz" Matsumoto
Add download link for stable version to README
2014-02-08made mrb_define_class to return existing class, with heavy refactoringYukihiro "Matz" Matsumoto
2014-02-08rename mrb_name_class and make it staticYukihiro "Matz" Matsumoto
2014-02-08Add download link for stable version to READMEDaniel Bovensiepen
- add download link of stable version 1.0.0 - remove remark for mruby branch due to non-existence
2014-02-08Remove notice of early versionDaniel Bovensiepen
2014-02-07add MRUBY_RELEASE info in numbersYukihiro "Matz" Matsumoto
2014-02-07forgot to add new filesYukihiro "Matz" Matsumoto
2014-02-07move version info from gems to core; ref #576 #1684Yukihiro "Matz" Matsumoto
2014-02-06Merge pull request #1688 from cubicdaiya/issues/unnecessary_semicolonYukihiro "Matz" Matsumoto
Remove unnecessary semicolon
2014-02-06remove unnecessary semicoloncubicdaiya
2014-02-06use mrb_str_new_lit() more widelyYukihiro "Matz" Matsumoto
2014-02-06introduce mrb_str_new_lit() to create strings from C string litralsYukihiro "Matz" Matsumoto
2014-02-05Fix MRUBY_BIRTH_YEARMATSUMOTO Ryosuke
2014-02-05Add global constant MRUBY_COPYRIGHTMATSUMOTO Ryosuke
2014-02-05replace Kernel.show_version with MRUBY_DESCRIPTIONMATSUMOTO Ryosuke
2014-02-05Fix release dateMATSUMOTO Ryosuke
2014-02-05Add pluggable versioning by mruby-versionMATSUMOTO Ryosuke
2014-02-04Merge pull request #1683 from take-cheeze/gem_flags_after_librariesYukihiro "Matz" Matsumoto
Pass forgotten variable gem_flags_after_libraries to tool's linker.run.
2014-02-05pass gem_flags_after_librariestake_cheeze
2014-02-05add RUBY_VERSION to notify syntax compatible versionYukihiro "Matz" Matsumoto
2014-02-05disable LocalJumpError test since the code causes SyntaxError (not ↵Yukihiro "Matz" Matsumoto
LocalJumpError) on CRuby
2014-02-05Fiber.new{break} caused SEGVYukihiro "Matz" Matsumoto
2014-02-04better codedump formatYukihiro "Matz" Matsumoto
2014-02-04Merge pull request #1682 from mattn/remove_warningYukihiro "Matz" Matsumoto
Remove warning
2014-02-04Remove warningmattn
2014-02-04fibers cannot cross C function boundary; close #1680Yukihiro "Matz" Matsumoto
2014-02-02Merge pull request #1678 from iij/float-nan-pYukihiro "Matz" Matsumoto
add Float#nan?
2014-02-03add Float#nan?Tomoyuki Sahara