summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2013-03-01Merge pull request #924 from carsonmcdonald/timetyposYukihiro "Matz" Matsumoto
Fix two typos
2013-03-01Fix two typosCarson McDonald
2013-03-01Merge branch 'master' of github.com:mruby/mrubyYukihiro Matz Matsumoto
2013-03-01replace instance_of check with structure checkYukihiro Matz Matsumoto
2013-03-01remove struct RStruct, use RArray insteadYukihiro Matz Matsumoto
2013-03-01fix indent in struct.cYukihiro Matz Matsumoto
2013-03-01internal array should be pudated using mrb_ary_set()Yukihiro Matz Matsumoto
2013-03-01Merge branch 'pluggable_struct' of https://github.com/mattn/mruby into ↵Yukihiro Matz Matsumoto
mattn-pluggable_struct
2013-03-01Merge pull request #922 from skandhas/pr-format-vm-sourceYukihiro "Matz" Matsumoto
format some source code (vm.c)
2013-03-01Set nil to uninitialized membersmattn
2013-03-01Fix copy valuesmattn
2013-03-01Fixed GC guardmattn
2013-03-01Should be MRB_DATA class. RStruct isn't managed by mruby core. So it should ↵mattn
be self-managed class instances.
2013-03-01format some source code (vm.c)skandhas
2013-02-28Merge pull request #918 from monaka/pr-remove-unused-struct-and-moreYukihiro "Matz" Matsumoto
Remove unused struct and more
2013-02-28Merge pull request #921 from skandhas/pr-format-class-sourceYukihiro "Matz" Matsumoto
format some source code (class.c)
2013-02-28Merge pull request #919 from monaka/pr-use-typedef-names-as-possibleYukihiro "Matz" Matsumoto
Use typedef names as possible
2013-03-01format some source code (class.c)skandhas
2013-03-01Move mrblib for Structmattn
2013-03-01Gemifymattn
2013-03-01Merge branch 'master' into pluggable_structmattn
2013-03-01Pluggable Structmattn
2013-03-01Add typedef to structures that have mrb_ prefix. Use typedef-ed type instead ↵Masaki Muranaka
of struct directly.
2013-03-01Pluggable Structmattn
2013-03-01Move the place of a curly bracket. This is just a cosmetic change.Masaki Muranaka
2013-03-01Remove unused structures.Masaki Muranaka
2013-02-28Merge pull request #913 from carsonmcdonald/arena_check_fixYukihiro "Matz" Matsumoto
Fix arena size check.
2013-02-28Merge pull request #917 from matsumoto-r/adjust_spaceYukihiro "Matz" Matsumoto
Adjust space
2013-02-28Adjust spaceMATSUMOTO Ryosuke
2013-02-28Merge pull request #914 from bovi/math_tolYukihiro "Matz" Matsumoto
Move Math::TOLERANCE to mruby-math
2013-02-28Merge pull request #915 from bovi/patch-1Yukihiro "Matz" Matsumoto
Modification of CONTRIBUTING.md
2013-03-01Fix styleguide based on @cremno's inputDaniel Bovensiepen
2013-03-01Modification of CONTRIBUTING.mdDaniel Bovensiepen
Some minor fixes of the  CONTRIBUTING.md file.
2013-02-28Move Math::TOLERANCE to mruby-mathDaniel Bovensiepen
2013-02-28Fix arena size check.Carson McDonald
2013-02-28mv mrgems/mruby-math to mrbgemsYukihiro Matz Matsumoto
2013-02-28Merge pull request #907 from masuidrive/mgem2mrbgemYukihiro "Matz" Matsumoto
s/mgem/mrbgem/
2013-02-28Merge pull request #906 from xxuejie/remove_unused_varYukihiro "Matz" Matsumoto
Do not generate test_args_hash variable if it is not used
2013-02-28Merge pull request #909 from mattn/cleanup_regexpYukihiro "Matz" Matsumoto
Cleanup Regexp codes
2013-02-28Merge pull request #911 from bovi/verboseYukihiro "Matz" Matsumoto
Rake respects verbose flag also for test and clean target
2013-02-28Merge pull request #905 from iij/pr-percent-notationYukihiro "Matz" Matsumoto
Regexp: %r notation bug fix.
2013-02-28Merge pull request #910 from mattn/pluggable_mathYukihiro "Matz" Matsumoto
Pluggable Math
2013-02-28Rake respects verbose flag also for test and clean targetDaniel Bovensiepen
2013-02-28Pluggable Mathmattn
2013-02-28Cleanup Regexp codesmattn
2013-02-28s/mgem/mrbgem/Yuichiro MASUI
2013-02-27Do not generate test_args_hash variable if it is not usedXuejie "Rafael" Xiao
2013-02-28Regexp: %r notation bug fix. close #85.Kouki Ooyatsu
be able to parse any delimiters. variable expansion isn't supported yet. * sample code ``` def matchpath(str) puts "#{str} is ..." if %r!img/! =~ str then puts "match" else puts "not match" end end matchpath("img/a.png") # => match matchpath("/usr/local/bin") # => not match matchpath("book/img/local") # => match ```
2013-02-27Merge pull request #896 from monaka/pr-put-time-mgem-into-repositoryYukihiro "Matz" Matsumoto
Put mruby-time mgem into the repository.
2013-02-27Merge pull request #889 from mattn/pluggable_timeYukihiro "Matz" Matsumoto
Pluggable Time class