[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

ruby for commercial application

nkb

10/2/2004 4:35:00 AM

Hi.

I would like to use ruby for commercial application, possible embed it
into my C/C++ application. I read the license text, but still is not
sure abt the licensing terms. Can we use ruby for commercial
application? Do we need to distribte our application with sources?
Appreciate any advise. Thanks!!


3 Answers

Yukihiro Matsumoto

10/2/2004 5:33:00 AM

0

Hi,

In message "Re: ruby for commercial application"
on Sat, 2 Oct 2004 13:34:35 +0900, nkb <nkb@pacific.net.sg> writes:
|Can we use ruby for commercial
|application?

Yes.

|Do we need to distribte our application with sources?

No. If you're using regex.c comes with 1.8.2, you have to allow
re-linking the binary (via supplying object files or dynamic linking),
because it's LGPL. If you are using Oniguruma new regex engine, you
have no such restriction.

matz.


Richard Lyman

10/2/2004 5:50:00 AM

0

Do you have an idea of when Oniguruma will be the standard/default and
not regex.c?

... or, when will regex.c not be in the ruby distribution?

-Rich


On Sat, 2 Oct 2004 14:32:33 +0900, Yukihiro Matsumoto
<matz@ruby-lang.org> wrote:
> Hi,
>
> In message "Re: ruby for commercial application"
> on Sat, 2 Oct 2004 13:34:35 +0900, nkb <nkb@pacific.net.sg> writes:
> |Can we use ruby for commercial
> |application?
>
> Yes.
>
> |Do we need to distribte our application with sources?
>
> No. If you're using regex.c comes with 1.8.2, you have to allow
> re-linking the binary (via supplying object files or dynamic linking),
> because it's LGPL. If you are using Oniguruma new regex engine, you
> have no such restriction.
>
> matz.
>
>


gabriele renzi

10/2/2004 7:56:00 AM

0

Richard Lyman ha scritto:
> Do you have an idea of when Oniguruma will be the standard/default and
> not regex.c?
>
> .. or, when will regex.c not be in the ruby distribution?
>
> -Rich

IIRC 1.9 in the cvs already has oniguruma as the standard regex lib.