我安装了rinku gem https://github.com/vmg/rinku
我可以:
rails c
并执行如下命令:
Rinku.auto_link('This is some text with link: http://hello.com', mode=:all, 'target="_blank"', skip_tags=nil)
就在控制台中。
但同样的命令在after_save
class Post < ActiveRecord::Base
中无效
uninitialized constant Post::Rinku
如何在Post
after_save
过滤器中访问Rinku中的类方法?