分发用 Ruby on Rails 编写的应用程序
我们有一个用 Ruby 1.9.2 和 Rails 3.x 编写的现有 Web 应用程序。 我们最初的模型是软件即服务,但在我们行业的调查中,出于隐私原因(将客户数据存储在他们自己的数据中心),有时在客户端托管我们的代码可能是更好的选择。
保护我们的代码库不被查看的最佳措施是什么?有没有人有编译成 JRuby 或类似解决方案的经验。操作步骤有哪些注意事项?
谢谢
We have an existing web application that is written in Ruby 1.9.2 and Rails 3.x.
Our original model was software as a service but in investigating in our industry there are times where hosting our code on the client may be a better option for privacy reasons (having the clients data stored at their own data center).
What are the best measures to protect our codebase from being viewed? Has anyone had experience compiling into JRuby or similar solutions. What are the steps are caveats?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 warbler。如果您使用“可执行”和“编译”功能,您可以将 Rails 应用程序打包为独立的、已编译(即 Java 类)的 Java 应用程序进行分发,您可以将已编译的 Java 类打包到 servlet 容器中,该容器可以作为 <代码>'java -jar app.jar'。
Look at warbler. You can package your rails app as a standalone, compiled (i.e., java classes) java app for distribution if you use the 'executable' and 'compiled' features, you can get compiled java classes packaged into a servlet container that can run as
'java -jar app.jar'
.