module Tychus
URIs using FB's open graph protocol store all recipe values within their <head>, as meta tags with 'property' attributes:
-
og:url
-
og:title
-
og:image
Constants
- Meta
- VERSION
Public Class Methods
parse(uri)
click to toggle source
# File lib/tychus.rb, line 8 def self.parse(uri) meta_object = MetaParser.new(uri).parse parser = ParserSelector.resolve_parser(meta_object) parser.new(uri).parse end