ruby classes in the erlang world

W

Woo-Kyoung Noh

those whom interested in both ruby and erlang,
I'd like to showing my small work.

I've been implemented a bit of ruby classes (String, Array, Range,
Regexp ,,,) using by erlang.
so could do something like

A = ruby:new([1,2,3]),
Stack = ruby:new([]),
[1,2,3] = (A(each))(fun(X) -> Stack({push,X+1}) end),
[2,3,4] = Stack(value),


I sent this to the erlang mailing list on a couple of weeks ago,
and got no replys.
well, I felt that erlang programmers don't like this :)
http://www.erlang.org/pipermail/erlang-questions/2007-June/027592.html


so what I really want to do is that
you know, erlang's powerful concurrency.
check this working between two erlang nodes.

$ erl -sname b
(b@woo-kyoung-nohs-computer)1> A=ruby:new([]).
#Fun<ruby.1.26108348>
(b@woo-kyoung-nohs-computer)2> A({register, a}).
true

$ erl -sname c
(c@woo-kyoung-nohs-computer)1> N='Node':'Node'({a,
'b@woo-kyoung-nohs-computer'}).
#Fun<ruby.1.26108348>
(c@woo-kyoung-nohs-computer)2> N({push,1}).
[1]


(b@woo-kyoung-nohs-computer)3> A(value).
[1]
(b@woo-kyoung-nohs-computer)4> A({push,2}).


(c@woo-kyoung-nohs-computer)3> N(value).
[1,2]



you could get the code from

svn co http://wookay.googlecode.com/svn/trunk/erlang/ruby/
cd ruby
make test



thank you.
have a good one.
 
S

Simen Edvardsen

those whom interested in both ruby and erlang,
I'd like to showing my small work.

I've been implemented a bit of ruby classes (String, Array, Range,
Regexp ,,,) using by erlang.
so could do something like

A = ruby:new([1,2,3]),
Stack = ruby:new([]),
[1,2,3] = (A(each))(fun(X) -> Stack({push,X+1}) end),
[2,3,4] = Stack(value),


I sent this to the erlang mailing list on a couple of weeks ago,
and got no replys.
well, I felt that erlang programmers don't like this :)
http://www.erlang.org/pipermail/erlang-questions/2007-June/027592.html


so what I really want to do is that
you know, erlang's powerful concurrency.
check this working between two erlang nodes.

$ erl -sname b
(b@woo-kyoung-nohs-computer)1> A=ruby:new([]).
#Fun<ruby.1.26108348>
(b@woo-kyoung-nohs-computer)2> A({register, a}).
true

$ erl -sname c
(c@woo-kyoung-nohs-computer)1> N='Node':'Node'({a,
'b@woo-kyoung-nohs-computer'}).
#Fun<ruby.1.26108348>
(c@woo-kyoung-nohs-computer)2> N({push,1}).
[1]


(b@woo-kyoung-nohs-computer)3> A(value).
[1]
(b@woo-kyoung-nohs-computer)4> A({push,2}).


(c@woo-kyoung-nohs-computer)3> N(value).
[1,2]



you could get the code from

svn co http://wookay.googlecode.com/svn/trunk/erlang/ruby/
cd ruby
make test



thank you.
have a good one.

I'm sure Erlang has fascilities for doing what you're doing without
faking Ruby. What's the value in using a crippled library nicked from
another language? Perhaps the users of the erlang mailing list simply
didn't understand. I don't think I understand either. What do you hope
to achieve by embedding Ruby standard classes in Erlang?

If you're trying to implement Ruby on the Erlang platform, I bet a lot
of people would be interested, but simply being able to fake Array,
String, Range etc. just isn't very interesting IMHO.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top