最近有没有人试图使用这个宝石?
https://github.com/watu/table_builder
我将它添加到Gemfile,将其添加到我的视图中:
= calendar_for(@tasks) do |t|
= t.head('mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun')
= t.day do |day, tasks|
= day.day
- tasks.each do |task|
= h(task.name)
它给出了标题中提到的错误:
undefined method `calendar_for' for #<#<Class:0x000000071b2ae0>:0x00000004257458>