Rubyforge RubyGem propagation delay619 (4/21/2008 7:47:35 AM) comp.lang.ruby Hi, I noticed that when I upload a new gem to Rubyforge, it takes several hours until I can install it via "gem". If you try within that period you are getting a 404 error (at least here in Germany, maybe the ... Michael
[ANN] First public release of RubyJS (0.7.0)026 (4/10/2008 11:32:09 AM) comp.lang.ruby Hi, I'm pleased to announce the first public release of RubyJS (a Ruby to Javascript compiler) and the availability of RubyJS as a RubyGem: gem install rubyjs rubyjs -h Usage: rubyjs_gen [option... Michael
GSoC 2008 Project Ideas page not found!229 (3/24/2008 1:56:40 PM) comp.lang.ruby Hi, The Project Ideas link on http://code.google.com/soc/2008/ruby/about.html leads to a non-existing page! Could someone please fix that? Regards, Michael ... Michael
[ANN] Cplus2Ruby - Gluing C++ and Ruby together in an OO manner021 (3/16/2008 5:14:06 PM) comp.lang.ruby Hi, A major rewrite and lots of new features of Cplus2Ruby lead to a 1.0.0 release, actually the first release ever :) And yes, Cplus2Ruby is different from CplusRuby. Regards, Michael ------------------... Michael
[Rubinius-question] GC-related142 (12/25/2007 11:25:55 AM) comp.lang.ruby Hi, BTW, is there a Rubinius related mailing list? I couldn't find one! If not, here is my problem/question: I've a lot of C++ objects, and wrap them in Ruby objects (just like every C/C++ extension does us... Michael
[ANN] RubyJS 0.6 - pre-RubyConf version121 (10/29/2007 4:05:04 PM) comp.lang.ruby Hi all, After 9 months, the second incarnation of RubyJS is out (a complete rewrite). RubyJS compiles Ruby to Javascript and tries to be as efficient as possible without sacrifying Ruby's beauty. This is a p... Michael
[ANN] CplusRuby - Gluing C and Ruby1831 (9/21/2007 7:01:05 PM) comp.lang.ruby Hi all, I am proud to announce my latest project called CplusRuby. Below I pasted it's README for further explanation. Alternatively read the following blog article: http://www.ntecs.de/blog/articles/2007/09/... Michael
[ANN] XML in Ruby - Templating Engine026 (9/14/2007 10:13:23 PM) comp.lang.ruby Hi, While everyone embeds Ruby into HTML code nowadays, I thought why not do it the other way round? Vim syntax highlighting included :) http://www.ntecs.de/hg-projects/xml_in_ruby/ Uh, and it's soo simple, ... Michael
[Google Summer of Code] Port Google Web ToolKit143 (3/14/2007 11:07:39 AM) comp.lang.ruby Hi, My proposal is to port Google's Web ToolKit [1] functionality to RubyJS [2]. I think it's more advanced than simply porting the code from Java to RubyJS, because Ruby doesn't require interfaces, has open-c... Michael
Re: Very interesting paper about future programming models225 (2/12/2007 10:15:29 AM) comp.lang.ruby Benjohn Barnes wrote: > > On 11 Feb 2007, at 20:09, M. Edward (Ed) Borasky wrote: > >> I'll invoke Arthur C. Clarke's laws: "When a distinguished but >> elderly scientist says something is impossible, he is ... Michael
[ANN] JS.Class 2.0223 (8/19/2008 9:43:40 PM) comp.lang.ruby [Note: parts of this message were removed to make it a legal post.] Hello list, Do please forgive me if this is a little too off-topic but I thought some folks here might be interested. I recently released ve... jcoglan(199)
private #initialize536 (11/27/2008 8:38:47 PM) comp.lang.ruby My apologies if this has been discussed before, but I couldn't find anything in a Google search, searching this particular list/group on Google, or my first attempt at blade. (Later attempts complained about no... ymendel(158)
Symbols garbage collector in Ruby1.9, fixed?2321 (3/30/2009 8:09:29 AM) comp.lang.ruby Hi, in Ruby 1.8 there is an issue when adding more and more Symbols since they remain in memory and are never removed. I'm doing a server in Ruby that receives messages with headers (From, To, Subject, X-Custo... ibc(607)
Where is Wee?225 (4/6/2009 9:59:32 AM) comp.lang.ruby Hi Michael, From where does one grab the latest version of wee? ( the rubyforge version is not the latest, right?) saji -- > Funny that Seaside is reducing continuations while I am increasing or > "stabilizi... saji(48)
[ANN] Falcon - powering innovation426 (4/11/2009 1:16:26 PM) comp.lang.ruby If anybody is interesed in new technologies, you'll love this new language called Falcon [1], which has been open sourced ago little time. Falcon is a scripting engine ready to empower mission-critical multith... jonas.esp(117)
Ruby vs. Groovy: your perspective4428 (4/13/2009 11:34:11 AM) comp.lang.ruby Hello, I realise this is a very hot topic... and people have strong feelings about either language. I am not trying to trolling. Still I've heard a bit about Groovy and it kind of seems like the Java answer to... diego.virasoro(59)
Argument types831 (4/14/2009 3:25:52 PM) comp.lang.ruby The documentation of the standard classes/methods never mention of what type/class an argument must be. For example let's look at the subscript of an Array. There is the form "array[index]". But of what Type mu... sensorflo(39)
How to sort array ascending, except zero ?2331 (6/8/2009 8:38:42 AM) comp.lang.ruby Hello, I need to sort [1,4,2,0,8,9] to [1,2,4,8,9,0] A simple ascending sort but with the zero values to the end I really don't see how to do Thanks for your help ... noway1729(25)