Sha256: 62640d8905327fd1b8ad2b7a129fadf65d8b12c29cc4130f4754261a7d5ecc87

Contents?: true

Size: 1.12 KB

Versions: 1

Compression:

Stored size: 1.12 KB

Contents

$:.unshift(File.expand_path(File.join(File.dirname(__FILE__), '..')))
require 'rdf'

module RDF
  ##
  # **`RDF::RDFa`** is an RDFa plugin for RDF.rb.
  #
  # @example Requiring the `RDF::RDFa` module
  #   require 'rdf/rdfa'
  #
  # @example Parsing RDF statements from an XHTML+RDFa file
  #   RDF::RDFa::Reader.open("etc/foaf.html") do |reader|
  #     reader.each_statement do |statement|
  #       puts statement.inspect
  #     end
  #   end
  #
  # @see http://rdf.rubyforge.org/
  # @see http://www.w3.org/TR/xhtml-rdfa-primer/
  # @see http://www.w3.org/2010/02/rdfa/wiki/Main_Page
  # @see http://www.w3.org/TR/2010/WD-rdfa-core-20100422/
  # @see http://www.w3.org/TR/2010/WD-xhtml-rdfa-20100422/
  #
  # @author [Gregg Kellogg](http://kellogg-assoc.com/)
  module RDFa
    require 'rdf/rdfa/format'
    require 'rdf/rdfa/vocab'
    require 'rdf/rdfa/patches/literal_hacks'
    require 'rdf/rdfa/patches/nokogiri_hacks'
    require 'rdf/rdfa/patches/uri_hacks'
    autoload :Reader,  'rdf/rdfa/reader'
    autoload :VERSION, 'rdf/rdfa/version'
    
    def self.debug?; @debug; end
    def self.debug=(value); @debug = value; end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rdf-rdfa-0.2.2 lib/rdf/rdfa.rb