simple_hashtag
simple_hashtag copied to clipboard
Parsing method instead of attribute
Is there a way to parse the method of a model instead of an attribute like so?
class Post < ActiveRecord::Base
include SimpleHashtag::Hashtaggable
hashtaggable_attribute :content
def content
# ...
end
end