From: dseverin Date: 2006-03-29T21:58:58+09:00 Subject: Re: Compiling ruby code Simon Nielsen wrote: > i know very little about ruby, have only looked shortly at rails > > Is it possible to compile my own code so that it cannot be viewed by > others ? > > much like the zend compiler does for php There's currently no ruby compiler. If you want better performance take look at YARV project ( http://www.atdot.net/yarv/ ) If you want to protect your code from reuse, here are some well-known rules ( http://www.faqs.org/docs/artu/ch01s06.html ) Just INVERT them all and apply INVERTED rules to your code and mind - and there will be no need to compile or obfuscate your code ever :))) -- Posted via http://www.ruby-forum.com/.