• R/O
  • HTTP
  • SSH
  • HTTPS

List of commits

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

mrubyを超漢字で動作させる


RSS
修訂. 時間 作者
e47f0fc 2015-09-22 04:14:31 Yukihiro "Matz" Matsumoto

Merge pull request #2959 from sagmor/api-documentation

C API documentation

4c8205d 2015-09-22 03:13:43 Seba Gamboa

Merge descriptions from doc/api/mruby/array.h.md

88f9770 2015-09-22 02:50:59 Seba Gamboa

document mrb_nil_value

0e5b815 2015-09-22 02:50:04 Seba Gamboa

Document data header

73dc32c 2015-09-22 00:15:29 Yukihiro "Matz" Matsumoto

add new functions mrb_gc_register/unregister; close #1411

some routines need to refer mruby objects (e.g. callbacks), in that case
you have to protect your objects from garbage collection. the new functions
mrb_gc_register() keeps those objects from GC. you have to remove your
objects using mrb_gc_unregister() when your C routines use mruby objects
any longer, otherwise objects will leak.

dd92557 2015-09-21 23:59:39 Seba Gamboa

Sort compiler macros around

40bf7bd 2015-09-21 13:48:42 Seba Gamboa

Sorting documentation grouping

c127614 2015-09-21 09:14:07 Seba Gamboa

Setting up doxygen groups

f36944f 2015-09-21 06:57:17 Seba Gamboa

Merging documentation from docs

7505bad 2015-09-19 11:59:29 Seba Gamboa

Playing around with some documentations schemes

386a2b8 2015-09-19 11:41:23 Yukihiro "Matz" Matsumoto

Merge pull request #2958 from suzukaze/fix-indents

Fix indents

ce6297a 2015-09-19 06:38:28 Jun Hiroe

Fix indents

6d55e77 2015-09-18 23:20:55 Yukihiro "Matz" Matsumoto

Merge pull request #2957 from suzukaze/replace-1-with-true-macro

Replace 1 with TURE macro

9586aaa 2015-09-18 23:19:51 Yukihiro "Matz" Matsumoto

Merge pull request #2956 from Asmod4n/master

Problem: Hash#fetch doesn't raise KeyError when a key cannot be found

dd1fa91 2015-09-18 15:51:49 Jun Hiroe

Replace 1 with TURE macro

4bd9867 2015-09-17 20:28:09 Asmod4n

Problem: Hash#fetch doesn't raise KeyError when a key cannot be found

Solution: change the Exception class raised to KeyError when a key
cannot be found.

e6d9b45 2015-09-17 20:24:17 Asmod4n

Merge remote-tracking branch 'mruby/master'

070e04e 2015-09-17 09:34:11 Yukihiro "Matz" Matsumoto

Merge pull request #2953 from takahashim/string_aset

support String#[pos, len]= val

f1c23a0 2015-09-16 18:50:03 takahashim

support String#[]= with 3 args

08f9a3e 2015-09-16 03:19:44 Yukihiro "Matz" Matsumoto

Merge pull request #2952 from takahashim/hash-fetch-block-key

fix block variable in Hash#fetch

b88ca62 2015-09-16 02:57:41 takahashim

fix block variable in Hash#fetch

e91b7d6 2015-09-15 08:45:34 Yukihiro "Matz" Matsumoto

Merge pull request #2951 from tatsuhiro-t/mrb_close_with_nullptr

Don't crash if NULL is passed to mrb_close

e8f88da 2015-09-14 15:56:54 Yukihiro "Matz" Matsumoto

instance_eval should set target_class; close #2936

target_class should be singleton class of the receiver

a085c04 2015-09-12 12:11:10 Tatsuhiro Tsujikawa

Don't crash if NULL is passed to mrb_close

Sometimes it is very useful just return from mrb_close if NULL is
passed as mrb. This is the same spirit of free(3), which just does
nothing if NULL is passed.

eb9bec1 2015-09-11 11:42:03 Yukihiro "Matz" Matsumoto

Merge pull request #1822 from mattn/locale

Add mrb_utf8_from_locale, mrb_utf8_free, mrb_locale_from_utf8, mrb_locale_free

8277e95 2015-09-11 11:12:03 Yasuhiro Matsumoto

Support windows locale

Add mrb_utf8_from_locale, mrb_utf8_free, mrb_locale_from_utf8, mrb_locale_free. Just works for windows.

3ed8e7f 2015-09-11 10:48:09 Yukihiro "Matz" Matsumoto

Merge pull request #2949 from tatsuhiro-t/custom-install-location

Customize installation directory using INSTALL_DIR environment variable

291265e 2015-09-11 00:15:01 Tatsuhiro Tsujikawa

Customize installation directory using INSTALL_DIR environment variable

Previously, minirake installed several commands (e.g., mrbc) in
repository locally under bin directory. But there was no knob for
users to change this directory. It effectively made `make distcheck`
fail if mruby was embedded into project managed by autotools.

This change adds a way for the user to change installation directory
by setting INSTALL_DIR environment variable.

698b3c9 2015-09-10 23:03:53 Yukihiro "Matz" Matsumoto

add Hash#rehash to handle key modification; ref #2945

543ac88 2015-09-10 22:58:01 Yukihiro "Matz" Matsumoto

Merge pull request #2947 from kazuho/kazuho/freeze-hash-key

freeze the hash keys (fixes #2945)