Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to prevent my users to read my ruby code.

Are there some efficient tricks to do that (apart from executing my code on a server) ?

share|improve this question
2  
Why particularly do you want to stop them from reading the code? You should note that the tools listed below will not stop someone really determined as they generally contain a copy of the source code within them. The most they will do is obfuscate the code and make it difficult to get to. – david4dev Dec 8 '10 at 20:18

2 Answers

up vote 5 down vote accepted

With jruby you can pack your code in a jar, which makes it less accessible. You've got some options:

Hope this helps

share|improve this answer

There are gems like Tar2RubyScript, RubyScript2Exe which help you distributing your ruby code. You can read http://www.erikveen.dds.nl/distributingrubyapplications/rails.html for more information

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.