我正在尝试在 Rails 项目之外编写一个 rakefile。
我创建了一个新目录,添加了一个 rakefile 并设置了一个基本的默认任务。有用。
我想使用premailer gem所以在我的默认任务中我添加了这个 -
premailer = Premailer.new('http://localhost/email.html', :warn_level => Premailer::Warnings::SAFE)
这不起作用,我收到以下错误。
uninitialized constant Object::Premailer
如何在我的任务中引用 premailer gem?我应该将它包含在各种 gemfile 中吗?