授予 Ruby on Rails 文件的版权
我想在 Ruby on Rails 项目的文件开头提供版权声明。 我可以在所有 Ruby on Rails 文件(包括自动生成的文件,如 application.rb、routes.rb)中提供版权声明吗? ?
I want provide to copyright notice at start of files in my Ruby on Rails project. Can I give copyright notice in all Ruby on Rails files including auto generated files like application.rb, routes.rb. ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在一些在线可用的 ruby 文件中看到了这一点,例如 https://github.com/diaspora/diaspora/blob/develop/app/models/account_deletion.rb
我需要做同样的事情,但我需要一个工具来自动添加它到所有 .rb 文件。
为此,我编写了以下脚本
https://gist.github.com/modsaid/5435473
I have seen this in some ruby files available online such ashttps://github.com/diaspora/diaspora/blob/develop/app/models/account_deletion.rb
I needed to do the same, but I needed a tool to automate adding it to all .rb files.
I have written the following script for this reason
https://gist.github.com/modsaid/5435473
您需要查看 MIT 许可证:http://www.opensource.org /licenses/mit-license.php
但如果我的理解是正确的,是的,您可以在您的文件上添加版权声明。
You would need to review the MIT-license for that: http://www.opensource.org/licenses/mit-license.php
but if my understanding is correct, yes you can put a copyright notice on your files.