summaryrefslogtreecommitdiffhomepage
path: root/mrbgems
AgeCommit message (Collapse)Author
2013-08-15remove alloc from Time classYukihiro "Matz" Matsumoto
2013-08-15redesign mruby/data.h API; use DATA_PTR() for raw data pointer, ↵Yukihiro "Matz" Matsumoto
DATA_GET_PTR() to type safe retrieval (TypeError will be raised), DATA_CHECK_GET_PTR() to get nil if type mismatched
2013-08-14define allocation method for Time class; close #1474Yukihiro "Matz" Matsumoto
2013-08-13Adding line numbers to the output of mirb.Jack Danger Canty
Before: > "hi" hi > d (mirb):1: undefined method 'd' for main (NoMethodError) > d (mirb):1: undefined method 'd' for main (NoMethodError) > "hi" hi > "#{'}" line 1: unterminated string meets end of file After > "hi" hi > d (mirb):2: undefined method 'd' for main (NoMethodError) > d (mirb):3: undefined method 'd' for main (NoMethodError) > "hi" hi > "#{'}" line 5: unterminated string meets end of file
2013-08-07don't use str{cpy,cat} in mruby and mrbcCremno
The length of each string is known. It should be used.
2013-08-07rename mrb_value_p() to mrb_ptr() since _p means predicate in mruby sourceYukihiro "Matz" Matsumoto
2013-08-03add read barrier to value.pYuichi Nishiwaki
API changes: - value.p must be accessed via mrb_value_p macro - value.p must be mutated via MRB_SET_VALUE_P macro
2013-08-05muby-time: use mrb_free directlyBlaž Hrastnik
2013-08-04Improve test of mruby-objectspace-ext GEMDaniel Bovensiepen
2013-08-04Improve test of mruby-toplevel-ext GEMDaniel Bovensiepen
2013-08-04Improve test of mruby-symbol-ext GEMDaniel Bovensiepen
2013-08-04Improve test of mruby-string-ext GEMDaniel Bovensiepen
2013-08-04Improve test of mruby-range-ext GEMDaniel Bovensiepen
2013-08-04Improve test of mruby-proc-ext GEMDaniel Bovensiepen
2013-08-04Improve test of mruby-object-ext GEMDaniel Bovensiepen
2013-08-04Improve test of mruby-numeric-ext GEMDaniel Bovensiepen
2013-08-04Improve test of mruby-hash-ext GEMDaniel Bovensiepen
2013-08-04Improve test of mruby-enum-ext GEMDaniel Bovensiepen
2013-08-04Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-08-04should protect resume fiber by write barrier; close #1434Yukihiro "Matz" Matsumoto
2013-08-03Set filename like irbCarson McDonald
2013-07-31add new mrbgem mruby-exitYukihiro "Matz" Matsumoto
2013-07-27I replace 0 with NULL because struct pointer be should set NULL in.Jun Hiroe
2013-07-23Merge pull request #1402 from mattn/check_home_is_nullYukihiro "Matz" Matsumoto
Check home is null
2013-07-23resolve conflictYukihiro "Matz" Matsumoto
2013-07-23Merge pull request #1399 from carsonmcdonald/readlinelinkfixYukihiro "Matz" Matsumoto
If readline is enabled add readline to libraries to link
2013-07-23Check home is nullmattn
2013-07-23"spec.author" is better for single-author gems.Tomoyuki Sahara
"spec.author=" expects a String represents a single author. "spec.authors=" expects an Array which is a list of multiple authors. http://guides.rubygems.org/specification-reference/
2013-07-22If readline is enabled add readline to libraries to linkCarson McDonald
2013-07-22Move home variable into readline ifdefCarson McDonald
2013-07-18Use env[USERPROFILE] for Windowskyab
2013-07-18Save mirb history when readline enabledkyab
2013-07-16Merge pull request #1388 from carsonmcdonald/toplevelwarnfixYukihiro "Matz" Matsumoto
Fix warning by making call explicit
2013-07-16Fix warning by making call explicitCarson McDonald
2013-07-15Repalace int with mrb_bool because a return value is boolean.Jun Hiroe
2013-07-14Merge pull request #1376 from suzukaze/replace-mrb_intern-in-random.cYukihiro "Matz" Matsumoto
Replace mrb_intern() with mrb_intern2() in random.c
2013-07-14Replace mrb_intern() with mrb_intern2() in random.cJun Hiroe
2013-07-14Replace mrb_intern() with mrb_intern2() or mrb_intern_cstr().Jun Hiroe
2013-07-11Merge branch 'kyab-toplevel_ext'Yukihiro "Matz" Matsumoto
2013-07-11add mruby-toplevel-ext as defaultYukihiro "Matz" Matsumoto
2013-07-11add private/protected/public to mainYukihiro "Matz" Matsumoto
2013-07-02Add include for toplevel self(main)kyab
2013-07-02Merge pull request #1328 from h2so5/add-object-instance-execYukihiro "Matz" Matsumoto
Add Object#instance_exec
2013-07-01Fix signed/unsigned warning.Carson McDonald
2013-07-01Add Object#instance_exech2so5
2013-06-29Merge pull request #1304 from iij/pr_nil_methodsYukihiro "Matz" Matsumoto
add nil.to_a, nil.to_f, nil.to_i methods
2013-06-28add nil.to_a, nil.to_f, nil.to_i methodsAkira Yumiyama
2013-06-27Visual Studio 2013 support + strtof + inlineCremno
- VC12 has better C99 library support due to C++11 - defined strtof for VC11 or older - define "inline" only if the C compiler is used
2013-06-18fix typo: Tus -> Tue.Tomoyuki Sahara
2013-06-06do not specify implementation dependant exception class names in fiber testYukihiro "Matz" Matsumoto