• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

よく使われているワード(クリックで追加)

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

mrubyを超漢字で動作させる


コミットメタ情報

リビジョン22464fe5a0a10f2b077eaba109ce1e912e4a77de (tree)
日時2015-11-17 18:02:30
作者mimaki <hiroshi_mimaki@scsk...>
コミッターYukihiro "Matz" Matsumoto

ログメッセージ

mruby-1.2.0

変更サマリ

差分

--- a/AUTHORS
+++ b/AUTHORS
@@ -1,6 +1,6 @@
11 Original Authors "mruby developers" are:
22 Yukihiro Matsumoto
3- FUKUOKA CSK CORPORATION
3+ SCSK KYUSHU CORPORATION
44 Kyushu Institute of Technology
55 Network Applied Communication Laboratory, Inc.
66 Daniel Bovensiepen
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ of the Ministry of Economy, Trade and Industry of Japan.
1717
1818 ## How to get mruby
1919
20-The stable version 1.1.0 of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/archive/1.1.0.zip](https://github.com/mruby/mruby/archive/1.1.0.zip)
20+The stable version 1.2.0 of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/archive/1.2.0.zip](https://github.com/mruby/mruby/archive/1.2.0.zip)
2121
2222 The latest development version of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/zipball/master](https://github.com/mruby/mruby/zipball/master)
2323
--- a/doc/guides/debugger.md
+++ b/doc/guides/debugger.md
@@ -38,7 +38,7 @@ To confirm mrdb was installed properly, run mrdb with the `--version` option:
3838
3939 ```bash
4040 $ mrdb --version
41-mruby 1.1.0 (2014-11-19)
41+mruby 1.2.0 (2014-11-17)
4242 ```
4343
4444 ## 2.2 Basic Operation
--- a/include/mruby/version.h
+++ b/include/mruby/version.h
@@ -42,12 +42,12 @@ MRB_BEGIN_DECL
4242 /*
4343 * Minor release version number.
4444 */
45-#define MRUBY_RELEASE_MINOR 1
45+#define MRUBY_RELEASE_MINOR 2
4646
4747 /*
4848 * Tiny release version number.
4949 */
50-#define MRUBY_RELEASE_TEENY 1
50+#define MRUBY_RELEASE_TEENY 0
5151
5252 /*
5353 * The mruby version.
@@ -62,7 +62,7 @@ MRB_BEGIN_DECL
6262 /*
6363 * Release year.
6464 */
65-#define MRUBY_RELEASE_YEAR 2014
65+#define MRUBY_RELEASE_YEAR 2015
6666
6767 /*
6868 * Release month.
@@ -72,7 +72,7 @@ MRB_BEGIN_DECL
7272 /*
7373 * Release day.
7474 */
75-#define MRUBY_RELEASE_DAY 19
75+#define MRUBY_RELEASE_DAY 17
7676
7777 /*
7878 * Release date as a string.
--- a/test/t/syntax.rb
+++ b/test/t/syntax.rb
@@ -1,6 +1,6 @@
11 assert('__FILE__') do
2- file = __FILE__.split('test/')[1]
3- assert_true 't/syntax.rb' == file || 't\syntax.rb' == file
2+ file = __FILE__[-9, 9]
3+ assert_equal 'syntax.rb', file
44 end
55
66 assert('__LINE__') do