summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorHidetaka Takano <[email protected]>2012-04-20 12:15:08 +0900
committerHidetaka Takano <[email protected]>2012-04-20 12:15:18 +0900
commit08451ed2008c841bd30982c66690b3be26d097f5 (patch)
tree38a506de2515810a01d274c1661e4af477f39c83
parent8a5943f2540cf43bb15789bc519e1b355d479fed (diff)
downloadmruby-08451ed2008c841bd30982c66690b3be26d097f5.tar.gz
mruby-08451ed2008c841bd30982c66690b3be26d097f5.zip
update notes
-rw-r--r--README30
-rw-r--r--README.ja32
2 files changed, 37 insertions, 25 deletions
diff --git a/README b/README
index 2e4ac8e0e..868a2a8cf 100644
--- a/README
+++ b/README
@@ -1,20 +1,26 @@
* What's mRuby
-mRuby is the ...
+mRuby is the light-weighted implementation of ruby language complied with ISO standard to execute various environment. It can run as 'interpriter form' or
+'compile and execute on vm form' according to its module construction.
+
+This achivement is due to the national project of the Ministry of Economy,
+Trade and Industry.
+
* Features of mRuby
- + Simple Syntax
- + *Normal* Object-Oriented features(ex. class, method calls)
- + *Advanced* Object-Oriented features(ex. Mix-in, Singleton-method)
- + Operator Overloading
- + Exception Handling
- + Iterators and Closures
- + Garbage Collection
- + Dynamic Loading of Object files(on some architecture)
- + Highly Portable (works on many Unix-like/POSIX compatible platforms
- as well as Windows, Mac OS X, BeOS etc.)
- cf. http://redmine.ruby-lang.org/wiki/ruby-19/SupportedPlatforms
+|FIXME:
+| + Simple Syntax
+| + *Normal* Object-Oriented features(ex. class, method calls)
+| + *Advanced* Object-Oriented features(ex. Mix-in, Singleton-method)
+| + Operator Overloading
+| + Exception Handling
+| + Iterators and Closures
+| + Garbage Collection
+| + Dynamic Loading of Object files(on some architecture)
+| + Highly Portable (works on many Unix-like/POSIX compatible platforms
+| as well as Windows, Mac OS X, BeOS etc.)
+| cf. http://redmine.ruby-lang.org/wiki/ruby-19/SupportedPlatforms
* How to get mRuby
diff --git a/README.ja b/README.ja
index ae4b8c8f9..73564e577 100644
--- a/README.ja
+++ b/README.ja
@@ -1,22 +1,28 @@
* mRubyとは
-mRubyは経済産業省の…
+mRubyはISO規格に準拠したRuby言語を様々な環境で動作可能となるように
+軽量化したものです。モジュール構成によりインタプリタ実行形式や
+コンパイル&VM実行形式でも動作させることができます。
+
+2010年度の経済産業省の地域イノベーション創出事業により開発されました。
* mRubyの特長
->以下要修正
-> + シンプルな文法
-> + 普通のオブジェクト指向機能(クラス,メソッドコールなど)
-> + 特殊なオブジェクト指向機能(Mixin, 特異メソッドなど)
-> + 演算子オーバーロード
-> + 例外処理機能
-> + イテレータとクロージャ
-> + ガーベージコレクタ
-> + ダイナミックローディング (アーキテクチャによる)
-> + 移植性が高い.多くのUnix-like/POSIX互換プラットフォーム上で
-> 動くだけでなく,Windows, Mac OS X,BeOSなどの上でも動く
-> cf. http://redmine.ruby-lang.org/wiki/ruby-19/SupportedPlatformsJa
+|MRI(Matz Ruby Implementation)版との互換性
+|
+|以下要修正
+| + シンプルな文法
+| + 普通のオブジェクト指向機能(クラス,メソッドコールなど)
+| + 特殊なオブジェクト指向機能(Mixin, 特異メソッドなど)
+| + 演算子オーバーロード
+| + 例外処理機能
+| + イテレータとクロージャ
+| + ガーベージコレクタ
+| + ダイナミックローディング (アーキテクチャによる)
+| + 移植性が高い.多くのUnix-like/POSIX互換プラットフォーム上で
+| 動くだけでなく,Windows, Mac OS X,BeOSなどの上でも動く
+| cf. http://redmine.ruby-lang.org/wiki/ruby-19/SupportedPlatformsJa
* 入手法