removed inclusion block

This commit is contained in:
danielvincent 2010-09-26 22:20:01 -07:00
parent 4bb4602762
commit b4d4986758

View file

@ -4,16 +4,12 @@
module Diaspora module Diaspora
module Webhooks module Webhooks
def self.included(klass)
klass.class_eval do
def to_diaspora_xml def to_diaspora_xml
xml = "<XML>" xml = "<XML>"
xml += "<post>#{self.to_xml.to_s}</post>" xml += "<post>#{to_xml.to_s}</post>"
xml += "</XML>" xml += "</XML>"
end end
end end
end end
end
end