require 'nokogiri' require 'open-uri' Gem.find_files("hentry_consumer/**/*.rb").each { |path| require path } module HentryConsumer FormatClass = %w(p n e i u dt) def self.parse(html) HFeed.new(html) end end