Can I ship an open source dll that is built using iron ruby? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T10:47:50Z http://stackoverflow.com/feeds/question/689407 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/689407/can-i-ship-an-open-source-dll-that-is-built-using-iron-ruby 0 Can I ship an open source dll that is built using iron ruby? Sam Saffron 2009-03-27T11:34:25Z 2009-08-26T17:12:52Z <p>Yes .... </p> <p>Technically ... what is involved in <a href="http://research.microsoft.com/en-us/people/mbarnett/ilmerge.aspx" rel="nofollow">ILMerging</a> the <a href="http://dlr.codeplex.com/" rel="nofollow">DLR</a> and <a href="http://www.ironruby.net/" rel="nofollow">Iron Ruby</a> into a single DLL? What should I be careful about? </p> <p>Legally (<a href="http://dlr.codeplex.com/license" rel="nofollow">MS-PL</a>) ... am I allowed to ship an open source dll that had iron ruby and the DLR embedded into it? (Looks like the answer to this question is, usually yes, what OS licenses is ms-pl compatible with?)</p> http://stackoverflow.com/questions/689407/can-i-ship-an-open-source-dll-that-is-built-using-iron-ruby/689581#689581 1 Answer by sipwiz for Can I ship an open source dll that is built using iron ruby? sipwiz 2009-03-27T12:27:09Z 2009-03-27T12:27:09Z <p>Rather than using ILMerge to combine the DLR and IronRuby since the source to both is available and you could just compile them into the same dll which would be a lot easier.</p> <p>The thing I'd be careful about is that IronRuby is still alpha and it would be incredibly risky to run a production service using it. It's only in the last 6 months or so that the <a href="http://www.ruby-forum.com/topic/182309#new" rel="nofollow">IronRuby releases</a> have started getting packaged up prior to which it was do it yourself builds from svn. In the 18 months or so I have been using IronRuby the interfaces and even assembly names changed regularly. I would expect things to be stabilisng now.</p> <p>I have an experimental server running that utilises a slightly older version of IronRuby and that version has a significant memory leak. I worked around it by automatically restarting the service every 24 hours. Things have probably improved since then.</p> <p>I don't know about the legal side of things but it's probably a similar approach to Siverlight where the beta licenses explicilty forbid commerical applications and permitted only development ones. Once SL was formally release the license changed to allow commerical products to be built on top of it.</p> <p>IronPython on the other hand is production ready and I have had good experiences using it on a production service for the last two years. </p>