Can you Distribute a Ruby on Rails Application without Source?

后端 未结 7 1863
闹比i
闹比i 2020-12-02 09:23

I\'m wondering if it\'s possible to distribute a RoR app for production use without source code? I\'ve seen this post on SO, but my situation is a little different. This w

7条回答
  •  温柔的废话
    2020-12-02 10:07

    If you release the source, obfuscated or otherwise, your app will be pirated. See, for example, Mint. It depends on what you're building, but you may find that you're better off releasing the app as a hybrid of sorts: A hosted app with a well-defined API, and a component that runs on the customer's server. As long as the true value of your product lives on the server side, you don't need to obfuscate your code, and you can just release the source code unmodified. Additionally, this may also give you the opportunity to reach clients running, say, PHP rather than Ruby. See, for example, Google Analytics, HopToad, Scout, etc, etc.

提交回复
热议问题