I\'m trying to extend an ActiveRecord model (Vote) that a gem (https://github.com/peteonrails/vote_fu) provides to my application. (I.e., there is no vote.rb<
Vote
vote.rb<
could you try something like this :
class Vote after_create :create_activity_stream_event has_one :activity_stream_event def create_activity_stream_event # something.. end end
I think than it will add your function and call functions "after_create" and "has_hone".