我尝试在我的 Rails 应用程序中使用 asciidoctor gem。我将它添加到我的Gemfile
并制作了bundle install
.
现在我尝试在控制器中使用 asciidoctor:
def show
@article.text = Asciidoctor.render(@article.text)
end
但我得到一个错误:
uninitialized constant ArticlesController::Asciidoctor
使用 rails 使用 asciidoctor-gem 的正确方法是什么?