如何构建任务“db:populate”

发布于 2024-10-22 22:55:34 字数 634 浏览 3 评论 0原文

  1 namespace :db do
  2   desc "Fill database with sample videos"
  3   task :populate => :environment do
  4     require 'faker'
  5     Rake::Task['db:reset'].invoke
  6     100.times do |n|
  7       headline = Faker::Lorem.sentence(3)
  8       video = Faker::Lorem.words(5)
  9       Video.create!(:headline => headline,
 10                   :video => video)
 11     end
 12   end
 13 end

我目前在 lib/tasks/sample_data.rb 中有这个 rake 任务,

当运行 rake db:populate 时,我收到错误,不知道如何构建任务 'db:populate'.我该如何解决这个问题?

笔记: 我是 Rails/Ruby 的新手。我正在使用 Rails 3。

  1 namespace :db do
  2   desc "Fill database with sample videos"
  3   task :populate => :environment do
  4     require 'faker'
  5     Rake::Task['db:reset'].invoke
  6     100.times do |n|
  7       headline = Faker::Lorem.sentence(3)
  8       video = Faker::Lorem.words(5)
  9       Video.create!(:headline => headline,
 10                   :video => video)
 11     end
 12   end
 13 end

I currently have this rake task in lib/tasks/sample_data.rb

When running rake db:populate I get the error, Don't know how to build task 'db:populate'. How do I get around this?

Notes:
I am a newbie in Rails/Ruby. I am using Rails 3.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

马蹄踏│碎落叶 2024-10-29 22:55:34

尝试将文件重命名为sample_data.rake。

通过将代码放入 lib/tasks 中名为 testomatic.rake 的文件中,我能够使您的示例正常工作(用 ap 语句替换任务的内部结构)。

Try renaming the file to sample_data.rake.

I was able to get your example working (replacing the internals of the task with a p statement) by putting your code in a file called testomatic.rake in lib/tasks.

话少情深 2024-10-29 22:55:34

我也遇到了这个问题。在Finder中,文件名是sample_data.rake,但是在单击该文件的“获取信息”后,我发现完整的文件名是sample_data.rake.erb——确保这不是您的问题。

I also had this problem. In Finder, the file name was sample_data.rake, but upon clicking "Get Info" for the file, I discovered the full file name was sample_data.rake.erb -- ensure that's not your problem.

夏日落 2024-10-29 22:55:34

新手也有同样的问题 - 我的分支的命名与我合并分支时的想法不同,因此它在我创建 lib/tasks/sample_data.rake 文件之前恢复为旧文件。

只需返回并使用正确的名称重新运行 git merge 并推送到 Heroku 即可正常工作。

Noobie with the same problem here - my branch was named differently than what I thought when I merged branches, so it reverted back to the old files before I had created my lib/tasks/sample_data.rake file.

Simply going back and re-running git merge with the correct name and pushing to Heroku got it to work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文