require 'ostruct' module Jamnagar module Materials class Item < Ore def raw_source host = to_h['final_url_host'] || "nosource.jamnagar.co" {"id" => host} end end module Twitter class Item < Jamnagar::Materials::Item def raw_contributor to_h["raw"]["user"] end end end module RSS class Item < Jamnagar::Materials::Item def raw_contributor to_h["raw"]["author"] end end end end end