Ruby

From eqqon

(Difference between revisions)
Jump to: navigation, search
(RUBY)
 
(31 intermediate revisions not shown)
Line 1: Line 1:
-
=RUBY=
+
__NOTOC__
-
{| class="eqqon_table" width="100%"
+
<div style="float:right;">[[Image:Ruby_logo.gif]]</div>
-
|---------------- style="vertical-align:top;"
+
= Articles =  
-
|colspan="2"|
+
-
===Newsgroups, Mailing lists, Blogs===
+
-
:[http://www.ruby-forum.com Ruby Forum mirrors Ruby talk newsgroups]
+
-
|---------------- style="vertical-align:top;"
+
{{ArticleTeaser
-
||
+
|pagelink=[[The Future of Ruby]]
-
===Software V1.8===
+
|iconlink={{clickpic|The Future of Ruby|http://www.eqqon.com/images/thumb/1/1c/Ruby_logo1.png/32px-Ruby_logo1.png}}
-
:[http://www.ruby-lang.org/en Ruby Home]
+
|headline=The Future of Ruby
-
:[http://raa.ruby-lang.org Ruby Application Archive]
+
|author=[[User:Henon|Henon]]
-
:[http://jruby.codehaus.org/ JRuby Home]
+
|intro=Yukihiro Matsumoto's C implementation of [[Ruby]] aka '''M'''ain '''R'''uby '''I'''mplementation  is considered the '''Quasi-Standard of the Ruby Language''' since there has never been an explicit language standard for Ruby. As the number of implementations grows, however, a formal standard seems to become necessary to prevent the horror scenario of various non-conform interpreters.
-
:{{hilite|[http://www.ruby-doc.org/core/ CORE Docs]}}
+
}}
-
:[http://www.ruby-doc.org/stdlib/ STDLIB Docs]
+
-
||
+
{{ArticleTeaser
-
===Software V1.9===
+
|pagelink=[[Ruby C Extension API Documentation (Ruby 1.8)]]
-
:[http://www.atdot.net/yarv/ Yet Another Ruby VM]
+
|iconlink={{clickpic|Ruby C Extension API Documentation (Ruby 1.8)|http://www.eqqon.com/images/thumb/1/1c/Ruby_logo1.png/32px-Ruby_logo1.png}}
-
:[http://www.ruby-doc.org/core-1.9/index.html CORE docs]
+
|headline=Ruby V1.8 C extension
 +
|author=[[User:Zelenka|W. Zelenka]]
 +
|intro=Extending Ruby with C functions is quiet easy. After you have learned the principles and worked through the ambiguous usage of the API functions you get the power of the Ruby language to your C program. Then it is possible to solve the time critical tasks at the C program and the complex part by Ruby.  We created a simple tutorial to get quickly familiar with the Ruby C extension API. Since the original article is only in plain text it is not quite readable. We provide better formatting and readability through markup and incorporated some of our experiences while building Ruby extensions.
 +
}}
-
|---------------- style="vertical-align:top;"
+
{{ArticleTeaser
-
||
+
|pagelink=[[Ruby/Ruby V1.9 C Extension]]
-
===RubyCLR===
+
|iconlink={{clickpic|Ruby/Ruby V1.9 C Extension|http://www.eqqon.com/images/thumb/1/1c/Ruby_logo1.png/32px-Ruby_logo1.png}}
 +
|headline=Ruby V1.9 C extension
 +
|author=[[User:Zelenka|W. Zelenka]]
 +
|intro=Basicly the interface is similar to V1.8. So most parts of your implementation should run also with V1.9. I had some troubles initializing the interpreter, this differs in V1.9 and V1.8. Threading is now implemented native. But there is a major drawback with the Ruby interpreter implementation. Many global's are used. As a result the interpreter cannot be run more than once at a process. As an example, the LUA interpreter does this perfect. The interpreter can run at several instances, each instance using a pointer to the interpreter context.
 +
}}
 +
 +
----
 +
===external links===
 +
 +
<div style="clear:left;"></div>
 +
 +
{| style="vertical-align:top;"
 +
|------------------------- style="vertical-align:top;"
||
||
-
===Ruby .NET===
+
=== Community ===
-
:[http://plas.fit.qut.edu.au/ruby.net/Download.aspx university of queensland]
+
* [http://www.ruby-lang.org/en official Ruby home]
 +
* [http://www.ruby-forum.com Ruby Forum] mirrors the ruby-talk mailing list.
 +
* [http://raa.ruby-lang.org Ruby Application Archive]
 +
* [http://en.wikipedia.org/wiki/Ruby_programming_language Wikipedia article on Ruby]
-
|---------------- style="vertical-align:top;"
 
-
||
 
-
=== Libraries high level===
 
-
:[http://rake.rubyforge.org/ Rake]
 
-
:[http://rspec.rubyforge.org/ RSpec (BDD Framework)]
 
-
:[http://www.rubyonrails.org/ Rails]
 
||
||
 +
=== Different Implementations ===
 +
* [http://rubydotnet.googlegroups.com/web/Home.htm Ruby.NET] Version 0.9 has substantial improvements, the project is on the way to production quality. - .NET compiler for Ruby.
 +
* [http://www.ironruby.net/ Iron Ruby] The (yet far from complete) C# implementation by Microsoft designed for .NET interoperability.
 +
* [http://jruby.codehaus.org/ JRuby] A very complete implementation of the interpreter in Java.
 +
* [http://rubini.us/ Rubinious] An implementation based loosely on the Smalltalk-80 VM architecture.
-
=== Libraries low level===
+
|------------------------- style="vertical-align:top;"
-
:[http://www.ruby-doc.org/stdlib/libdoc/uri/rdoc/index.html URI]
+
||
-
:[http://www.ruby-doc.org/stdlib/libdoc/pathname/rdoc/index.html Pathname]
+
=== Documentation ===
 +
* [http://www.rubyist.net/~slagell/ruby/ Ruby Tutorial]
 +
* [http://whytheluckystiff.net/ruby/pickaxe Programming Ruby] Free online version of the legendary "Pickaxe".
 +
* [http://www.ruby-doc.org/core/ CORE]
 +
* [http://www.ruby-doc.org/stdlib/ STDLIB]
 +
* [http://www.ruby-doc.org/core-1.9/index.html CORE-1.9]
 +
* [{{DOCUMENTS}}/software/ruby/rhg-2006-05-04/index.html The Ruby Hacking Guide] English translation of the japanese book by Minero Aoki. The translation is not yet finished.
 +
* [http://www.ruby-doc.org/doxygen/current/ C API doxygen docs]
 +
* [http://docs.huihoo.com/ruby/ruby-man-1.4/syntax.html Ruby Syntax]
-
|---------------- style="vertical-align:top;"
 
||
||
-
===Documentation Language===
+
=== GUI Toolkit Bindings ===
-
:[http://www.rubyist.net/~slagell/ruby/ Ruby Introduction:]
+
* [http://fxruby.org FXRuby] Ruby bindings to the [http://fox-toolkit.org FOX Toolkit]. A GUI designer is available too: [http://fox-tool.rubyforge.org FoxGUIb].
-
:[http://whytheluckystiff.net/ruby/pickaxe Programming Ruby] (online book)
+
* WxRuby
-
:[http://www.rubycentral.com/book/ Programming Ruby] (online book)
+
* GTK
 +
* Ruby-Qt
 +
|------------------------- style="vertical-align:top;"
||
||
-
===Documentation C API===
+
=== Libraries ===
-
:[[Ruby C Extension|eqqon ruby C extension documentation]]
+
*[http://rake.rubyforge.org/ Rake]
-
:[{{DOCUMENTS}}/software/ruby/rhg-2006-05-04/index.html RHG - ruby hacking guide]
+
*[http://rspec.rubyforge.org/ RSpec (BDD Framework)]
-
:[http://www.ruby-doc.org/doxygen/current/ doxygen docs]
+
*[http://www.rubyonrails.org/ Rails]
-
:[http://docs.huihoo.com/ruby/ruby-man-1.4/syntax.html ruby SYNTAX]
+
*[http://www.ruby-doc.org/stdlib/libdoc/uri/rdoc/index.html URI]
 +
*[http://www.ruby-doc.org/stdlib/libdoc/pathname/rdoc/index.html Pathname]
|}
|}

Latest revision as of 16:16, 6 January 2009

Ruby logo.gif

Articles

32px-Ruby_logo1.png
 
Author: Henon
The Future of Ruby  -  The Future of Ruby
Yukihiro Matsumoto's C implementation of Ruby aka Main Ruby Implementation is considered the Quasi-Standard of the Ruby Language since there has never been an explicit language standard for Ruby. As the number of implementations grows, however, a formal standard seems to become necessary to prevent the horror scenario of various non-conform interpreters.   Read The Future of Ruby ...
32px-Ruby_logo1.png
 
Author: W. Zelenka
Ruby C Extension API Documentation (Ruby 1.8)  -  Ruby V1.8 C extension
Extending Ruby with C functions is quiet easy. After you have learned the principles and worked through the ambiguous usage of the API functions you get the power of the Ruby language to your C program. Then it is possible to solve the time critical tasks at the C program and the complex part by Ruby. We created a simple tutorial to get quickly familiar with the Ruby C extension API. Since the original article is only in plain text it is not quite readable. We provide better formatting and readability through markup and incorporated some of our experiences while building Ruby extensions.   Read Ruby C Extension API Documentation (Ruby 1.8) ...
32px-Ruby_logo1.png
 
Author: W. Zelenka
Ruby/Ruby V1.9 C Extension  -  Ruby V1.9 C extension
Basicly the interface is similar to V1.8. So most parts of your implementation should run also with V1.9. I had some troubles initializing the interpreter, this differs in V1.9 and V1.8. Threading is now implemented native. But there is a major drawback with the Ruby interpreter implementation. Many global's are used. As a result the interpreter cannot be run more than once at a process. As an example, the LUA interpreter does this perfect. The interpreter can run at several instances, each instance using a pointer to the interpreter context.   Read Ruby/Ruby V1.9 C Extension ...



external links

Community

Different Implementations

  • Ruby.NET Version 0.9 has substantial improvements, the project is on the way to production quality. - .NET compiler for Ruby.
  • Iron Ruby The (yet far from complete) C# implementation by Microsoft designed for .NET interoperability.
  • JRuby A very complete implementation of the interpreter in Java.
  • Rubinious An implementation based loosely on the Smalltalk-80 VM architecture.

Documentation

GUI Toolkit Bindings

Libraries