Netbeans 项目设置 Ruby
我对 Ruby 以及项目的设置方式很陌生。我正在使用 Netbeans IDE,在 GUI 中有一个“源文件夹”,但它位于 ~/NetBeansWorkspace/ProjectName/lib
而不是 src
文件夹。这是 Ruby 中的约定吗?如果不是,我如何让 Netbeans 将我的文件放在 src
文件夹下?
I'm new to Ruby and how projects are set up. I am using Netbeans IDE and in the GUI there is a "Source Folder" but this resides at ~/NetBeansWorkspace/ProjectName/lib
rather than a src
folder. Is this the convention in Ruby? If not how do I get Netbeans to put my files under a src
folder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道在 Rails 中,所有应用程序都放在一个文件夹中,该文件夹的名称与项目的名称无关。该文件夹内包含应用程序的所有资源。 lib 文件夹应包含应用程序的“附加”代码。
I know that in Rails all the applications are put in a folder that is named whatever you name the project. Inside the folder is all the resources for the application. The lib folder should contain "additional" code for your application.