New to RedHanded? About our sections.
Archive
- December 2004
- January 2005
- February 2005
- March 2005
- April 2005
- May 2005
- June 2005
- July 2005
- August 2005
- September 2005
- October 2005
- November 2005
- December 2005
- January 2006
- February 2006
- March 2006
- April 2006
- May 2006
- June 2006
- July 2006
- August 2006
- September 2006
- October 2006
- November 2006
- December 2006
- January 2007
- February 2007
- March 2007
- April 2007
- May 2007
Get your copy of Programming Ruby!
Links
@technorati@del.icio.us
@flickr
@artima
@caboo
@oreilly
ruby
-> docs
-> wares
-> wiki
-> forum
-> quizzes
-> planet
-> irc
rubyweeklynews
rails
-> wiki
-> planet
-> irc
%anarchaia
%projectionist
~audreyt
~black
~britt
~buck
~copeland
~fernandez
~fowler
~hansson
~hodel
~hoy/7
~hwang
~luetke
~matz
~mental
~olson
~pragdave
~premshree
~neukirchen
~robby
~rousette
~topfunky
~voorhis
~weirich
~zenspider
Syndicate
Built upon Hobix
Got a story for us? E-mail it!
daniel
whoa, it’s a dsl but backwards!
Hank
Holy crap NICE !
jes5199
i’ve had a feeling this was going to happen. good stuff.
i guess we better find the limitations and start hacking them out of existence.
MenTaLguY
Wow, something we’ve all dreamed about—but who knew it would be so easy?
MenTaLguY
jes5199: That’s the spirit! Let’s not rest until we can run Rails in the browser.
(Seriously, I think the hardest thing to address is going to be getting all the nooks and crannies of Ruby’s grammar covered. Heredocs … brr.)
jes5199
MenTaLguY:, some corner of my brain says “if we were LISP hackers, we’d have the whole thing done by now”. ::shudder::
MenTaLguY
Ohh, wait a minute. It’s using ParseTree. Which means grammar is solved.
Paul
Glad you all like it so far! That’s only a quick proof of concept, though, to show that simple Ruby code can be expressed in JavaScript.
The biggest thing needed to make it Ruby-like is to implement message sending, I think. I have a plan for that!
jes5199: I don’t know about LISP , but Scheme hackers have already done it.
jonah
this is potentially fantastic. my javascript apps are getting more complex day by day. so it would be great to be able to write them in ruby !
Dan W
I think it’s a really bad idea for real world use, it’s a cool little experiment though. Everyone seems to want to hide JavaScript under other languages at the moment but I don’t see the sense it. JavaScript isn’t a bad language at all if you take the time to learn it.
It’s only the browser implementations that are ropey but hiding it under lots of ruby isn’t going to help that in fact it will probably make it worse.
MenTaLguY
Dan W: There’s nothing wrong with Javascript. It’s just that it’s really appealing to be able to use the same language for the entire application, front to back.
MenTaLguY
Actually, after writing that I subsequently spent several days doing some hardcore Javascleept development. I take that back: there are somethings wrong with the Java Scripts. Ruby please.