oga 0.1.3-java → 0.2.0-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oga
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.2.0
5
5
  platform: java
6
6
  authors:
7
7
  - Yorick Peterse
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-23 00:00:00.000000000 Z
11
+ date: 2014-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: racc
@@ -148,13 +148,18 @@ executables: []
148
148
  extensions: []
149
149
  extra_rdoc_files: []
150
150
  files:
151
+ - doc/xml_namespaces.md
152
+ - doc/manually_creating_documents.md
151
153
  - doc/changelog.md
154
+ - doc/css_selectors.md
152
155
  - doc/migrating_from_nokogiri.md
153
156
  - doc/DCO.md
154
157
  - doc/css/common.css
155
158
  - lib/oga.rb
156
159
  - lib/oga/version.rb
157
160
  - lib/oga/oga.rb
161
+ - lib/oga/css/lexer.rb
162
+ - lib/oga/css/parser.rb
158
163
  - lib/oga/xml/namespace.rb
159
164
  - lib/oga/xml/lexer.rb
160
165
  - lib/oga/xml/querying.rb
@@ -171,6 +176,7 @@ files:
171
176
  - lib/oga/xml/character_node.rb
172
177
  - lib/oga/xml/doctype.rb
173
178
  - lib/oga/xml/html_void_elements.rb
179
+ - lib/oga/xml/entities.rb
174
180
  - lib/oga/xml/attribute.rb
175
181
  - lib/oga/xml/xml_declaration.rb
176
182
  - lib/oga/xml/processing_instruction.rb
@@ -179,7 +185,6 @@ files:
179
185
  - lib/oga/html/sax_parser.rb
180
186
  - lib/oga/xpath/lexer.rb
181
187
  - lib/oga/xpath/parser.rb
182
- - lib/oga/xpath/node.rb
183
188
  - lib/oga/xpath/evaluator.rb
184
189
  - ext/ragel/base_lexer.rl
185
190
  - ext/java/Liboga.java
@@ -1,10 +0,0 @@
1
- module Oga
2
- module XPath
3
- ##
4
- # AST node for XPath expressions.
5
- #
6
- class Node < AST::Node
7
-
8
- end # Node
9
- end # XPath
10
- end # Oga