~ubuntu-branches/ubuntu/wily/ruby-xpath/wily-proposed

« back to all changes in this revision

Viewing changes to lib/xpath.rb

  • Committer: Package Import Robot
  • Author(s): Markus Tornow
  • Date: 2012-12-08 22:57:18 UTC
  • Revision ID: package-import@ubuntu.com-20121208225718-6n9jpw8w8la9x2hr
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
require 'nokogiri'
 
2
 
 
3
module XPath
 
4
  autoload :Expression, 'xpath/expression'
 
5
  autoload :Literal, 'xpath/literal'
 
6
  autoload :Union, 'xpath/union'
 
7
  autoload :Renderer, 'xpath/renderer'
 
8
  autoload :HTML, 'xpath/html'
 
9
  autoload :DSL, 'xpath/dsl'
 
10
 
 
11
  extend XPath::DSL::TopLevel
 
12
  include XPath::DSL::TopLevel
 
13
 
 
14
  def self.generate
 
15
    yield(self)
 
16
  end
 
17
end