From: ptkwt@... (Phil Tomson) Date: 2004-07-21T06:22:05+09:00 Subject: Re: Simple Solution to Ruby Licensing Issues/Misunderstandings In article <478c16ae040720123626c63bc1@mail.gmail.com>, Edgardo Hames wrote: >On Tue, 20 Jul 2004 08:01:50 +0900, Mark Hubbart wrote: >> >> Or how about this: Ruby is dual-licensed; it can be used under the Ruby >> license terms, or under the LGPL. Would it be problematic to add the >> BSD license in the mix? >> > >Is that allowed by the mix-in mechanism supported by Ruby ;-) > >Ed > > module LGPL .... end module RubysOwn .... end module BSDLicense .... end class RubyLicense include LGPL include RubysOwn include BSDLicense end ....seems to work ;-) Phil