summaryrefslogtreecommitdiffhomepage
path: root/mrbgems
AgeCommit message (Collapse)Author
2015-11-24Remove mrbtest_irep from mrbtestZachary Scott
If we make the core tests a dependency on the mruby-test gem, we don't need to worry about maintaining the core test irep alone.
2015-11-23Fix MRB_DISABLE_STDIO typo.Simon Génier
2015-11-20support Numeric#zero? and Numeric#nonzero?takahashim
2015-11-19Fix typo on MRB_DISABLE_STDIO.Simon Génier
2015-11-19Merge pull request #3027 from pbosetti/masterYukihiro "Matz" Matsumoto
Fix check for VisualStudio Version in mruby-math gem
2015-11-19formatting buffer should be bigger for negative dots; ref #3025Yukihiro "Matz" Matsumoto
2015-11-19binary format no longer need to preserve org_vYukihiro "Matz" Matsumoto
2015-11-19integer range check was moved to mrb_flo_to_fixnum(); ref #3025Yukihiro "Matz" Matsumoto
2015-11-19negative binary format should not be masked by 10bits; ref #3025Yukihiro "Matz" Matsumoto
2015-11-19binary sprintf should not be restricted by mrb_int size; fix #3025Yukihiro "Matz" Matsumoto
2015-11-19Fix check for VisualStudio Version in mruby-math gemPaolo Bosetti
2015-11-17DISABLE_STDIO/ENABLE_DEBUG macros to rename; close #3014Yukihiro "Matz" Matsumoto
changes: * rename DISABLE_STDIO -> MRB_DISABLE_STDIO * rename ENABLE_DEBUG -> MRB_ENABLE_DEBUG_HOOK * no more opposite macro definitions (e.g. ENABLE_STDIO, DISABLE_DEBUG). * rewrite above macro references throughout the code. * update documents
2015-11-15move Hash comparison methods to mruby-hash-ext gemYukihiro "Matz" Matsumoto
2015-10-24Ensure mrbs dependency is maintained for mruby-testZachary Scott
2015-10-22Merge pull request #2999 from sagmor/better-docsYukihiro "Matz" Matsumoto
More Docs
2015-10-21Revert "Mark core gems with mrbgem tag"Seba Gamboa
This reverts commit 5cdcce8dbddd94ecb9503a0a1d47370c4ef97177.
2015-10-21loop may return StopIteration#result; [ruby-bugs#11498]Yukihiro "Matz" Matsumoto
2015-10-21Merge pull request #2997 from furunkel/gc_cleanupYukihiro "Matz" Matsumoto
GC cleanup
2015-10-21fixed SEGV in mrb_parser_dump(NODE_COLON3)Yukihiro "Matz" Matsumoto
2015-10-20Remove obvious warnings from docsSeba Gamboa
2015-10-20Fix enumerator doc errorsSeba Gamboa
2015-10-20Mark core gems with mrbgem tagSeba Gamboa
2015-10-19Clean up GC codefurunkel
2015-10-08print unicode on windows consoleYasuhiro Matsumoto
2015-10-04Add regression test for #2933INOUE Yasuyuki
2015-10-01Array#index to take block; fix #2968 close #2970Yukihiro "Matz" Matsumoto
2015-10-01Merge pull request #2960 from suzukaze/refactor-hash-ext-testYukihiro "Matz" Matsumoto
Refator Hash#fetch test
2015-10-01optimize if statement with constant conditionYukihiro "Matz" Matsumoto
2015-10-01Merge pull request #2961 from takahashim/regex_encYukihiro "Matz" Matsumoto
support Regexp literal option: //n and //u
2015-09-30fix tests on windows.Yasuhiro Matsumoto
'bin/mruby' not work on windows. so correct command name and quoted arguments.
2015-09-27Enumerable#each_{cons,slice} to return enumeratorsYukihiro "Matz" Matsumoto
2015-09-26Refator Hash.fetch testJun Hiroe
2015-09-26support Regexp literal option: //n and //utakahashim
2015-09-24UTF-8 string support in coreYukihiro "Matz" Matsumoto
define MRB_UTF8_STRING (in mrbconf.h) to enable UTF-8 support.
2015-09-23don't print anonymous struct class nameYukihiro "Matz" Matsumoto
2015-09-23mruby-struct gem refactoringYukihiro "Matz" Matsumoto
2015-09-17Problem: Hash#fetch doesn't raise KeyError when a key cannot be foundAsmod4n
Solution: change the Exception class raised to KeyError when a key cannot be found.
2015-09-16fix block variable in Hash#fetchtakahashim
2015-09-14instance_eval should set target_class; close #2936Yukihiro "Matz" Matsumoto
target_class should be singleton class of the receiver
2015-09-11Support windows localeYasuhiro Matsumoto
Add mrb_utf8_from_locale, mrb_utf8_free, mrb_locale_from_utf8, mrb_locale_free. Just works for windows.
2015-09-03Add build_mrbtest after config block is evaluatedZachary Scott
This allows us to add `enable_test` anywhere in a build target, without having to worry about the order in which they are included. Previously, there was a bug that occured when adding 'mruby-test' gem to dependencies before additional gems. Instead of adding the 'mruby-test' gem dependency manually to a test build, we now only need to call `enable_test` in the target. This also allows us to call `test_enabled?` downstream when running mruby tests ourselves. /cc #2924
2015-09-03clear DUMP_ENDIAN flags before settingYukihiro "Matz" Matsumoto
2015-09-03Merge pull request #2924 from zzak/mruby-testYukihiro "Matz" Matsumoto
Extract mrbtest to binary gem
2015-09-03unsigned long may be smaller than mrb_int; use uint64_t instead; fix #2935Yukihiro "Matz" Matsumoto
2015-09-02Merge pull request #2934 from zzak/masterYukihiro "Matz" Matsumoto
Typo in mruby-bin-debugger/mrbgem.rake
2015-09-01Typo in mruby-bin-debugger/mrbgem.rakeZachary Scott
2015-09-01mruby-test should be opt-inZachary Scott
2015-08-22Refactor test/mrbtest.rake and tasks/mrbgems_test.rake into mrbgem.rakeZachary Scott
2015-08-22Move test source code and rake task to mrbgemZachary Scott
2015-08-22Use #nil? instead of == nil.INOUE Yasuyuki