.rake 文件和文本编辑器
我正在尝试遵循 Michael hartl 的 Ruby on Rails 教程,他为 Faker gem 创建了一个sample_data.rake 文件来创建示例数据和用户。问题是,当我在 TextWrangler 中打开应用程序时,该文件不会显示在文件目录中,然后当我使用 TextWrangler 强制打开它时,文件上的文本全是黑色,而通常 TextWrangler 文件上的编程语言将是不同的颜色。
以 .rake 结尾的文件有什么特别之处吗?
我是一个迷失的新手,我什至不知道它运行的功能是否正常工作,所以我有点担心我可能做错了什么......
I'm trying to follow a Ruby on Rails tutorial by Michael hartl and he creates a sample_data.rake file for the Faker gem to create sample data and users. The problem is that this file doesn't show in the directory of files when I open the application in TextWrangler, and then when I force it open using TextWrangler, the text on the file is all black whereas normally programming language on a TextWrangler file will be different colors.
Is there something special about files ending .rake?
I'm such a lost newbie that I don't even really know if the functions it's running are working, so I'm a bit worried that I might be doing something wrong...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以告诉编辑器将
.rake
文件视为常规 Ruby 文件。 rakefile 没有什么特别的。扩展名不同的唯一原因是表明它应该使用 rake 命令运行,而不是像普通的 ruby 一样运行。我不知道如何在 TextWrangler 中执行此操作,但应该有一个设置文件类型的选项。
You can tell your editor to treat
.rake
files as regular Ruby files. There is nothing special about rakefiles. The only reason the extension is different is to indicate that it should be run with therake
-command, not as plain ruby.I don't know how to do that in TextWrangler, but there should be an option to set the file type.