saxon-rb 0.4.0-java → 0.5.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.
- checksums.yaml +4 -4
- data/.circleci/config.yml +429 -42
- data/Gemfile +2 -2
- data/README.md +317 -10
- data/Rakefile +237 -7
- data/lib/net/sf/saxon/Saxon-HE/{9.9.1-5/Saxon-HE-9.9.1-5.jar → 9.9.1-6/Saxon-HE-9.9.1-6.jar} +0 -0
- data/lib/saxon-rb.rb +1 -0
- data/lib/{saxon_jars.rb → saxon-rb_jars.rb} +2 -2
- data/lib/saxon.rb +13 -0
- data/lib/saxon/axis_iterator.rb +8 -1
- data/lib/saxon/configuration.rb +1 -0
- data/lib/saxon/item_type.rb +12 -17
- data/lib/saxon/item_type/lexical_string_conversion.rb +136 -58
- data/lib/saxon/item_type/value_to_ruby.rb +13 -0
- data/lib/saxon/loader.rb +4 -1
- data/lib/saxon/nokogiri.rb +78 -0
- data/lib/saxon/occurrence_indicator.rb +32 -3
- data/lib/saxon/processor.rb +32 -1
- data/lib/saxon/qname.rb +37 -2
- data/lib/saxon/s9api.rb +5 -0
- data/lib/saxon/sequence_type.rb +131 -0
- data/lib/saxon/source.rb +207 -71
- data/lib/saxon/version.rb +1 -1
- data/lib/saxon/xdm.rb +7 -0
- data/lib/saxon/xdm/array.rb +16 -0
- data/lib/saxon/xdm/atomic_value.rb +7 -1
- data/lib/saxon/xdm/empty_sequence.rb +13 -0
- data/lib/saxon/xdm/external_object.rb +1 -0
- data/lib/saxon/xdm/function_item.rb +1 -0
- data/lib/saxon/xdm/item.rb +7 -0
- data/lib/saxon/xdm/map.rb +38 -0
- data/lib/saxon/xdm/node.rb +19 -1
- data/lib/saxon/xdm/sequence_like.rb +15 -0
- data/lib/saxon/xdm/value.rb +21 -5
- data/lib/saxon/xpath.rb +9 -0
- data/lib/saxon/xpath/compiler.rb +36 -1
- data/lib/saxon/xpath/executable.rb +53 -28
- data/lib/saxon/xpath/static_context.rb +19 -39
- data/lib/saxon/xpath/variable_declaration.rb +16 -49
- data/lib/saxon/xslt.rb +12 -0
- data/lib/saxon/xslt/compiler.rb +75 -6
- data/lib/saxon/xslt/evaluation_context.rb +19 -3
- data/lib/saxon/xslt/executable.rb +204 -14
- data/saxon-rb.gemspec +1 -1
- metadata +9 -7
- data/saxon.gemspec +0 -30
data/saxon-rb.gemspec
CHANGED
@@ -24,7 +24,7 @@ It aims to provide an idiomatic Ruby wrapper around all of Saxon's features.}
|
|
24
24
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
25
25
|
spec.require_paths = ['lib']
|
26
26
|
|
27
|
-
spec.requirements << 'jar net.sf.saxon, Saxon-HE, 9.9.1-
|
27
|
+
spec.requirements << 'jar net.sf.saxon, Saxon-HE, 9.9.1-6'
|
28
28
|
|
29
29
|
spec.add_development_dependency 'bundler', '~> 2.0'
|
30
30
|
spec.add_development_dependency 'jar-dependencies'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: saxon-rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Matt Patterson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-01-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -171,7 +171,9 @@ files:
|
|
171
171
|
- Rakefile
|
172
172
|
- bin/console
|
173
173
|
- bin/setup
|
174
|
-
- lib/net/sf/saxon/Saxon-HE/9.9.1-
|
174
|
+
- lib/net/sf/saxon/Saxon-HE/9.9.1-6/Saxon-HE-9.9.1-6.jar
|
175
|
+
- lib/saxon-rb.rb
|
176
|
+
- lib/saxon-rb_jars.rb
|
175
177
|
- lib/saxon.rb
|
176
178
|
- lib/saxon/axis_iterator.rb
|
177
179
|
- lib/saxon/configuration.rb
|
@@ -181,11 +183,13 @@ files:
|
|
181
183
|
- lib/saxon/item_type/value_to_ruby.rb
|
182
184
|
- lib/saxon/jaxp.rb
|
183
185
|
- lib/saxon/loader.rb
|
186
|
+
- lib/saxon/nokogiri.rb
|
184
187
|
- lib/saxon/occurrence_indicator.rb
|
185
188
|
- lib/saxon/parse_options.rb
|
186
189
|
- lib/saxon/processor.rb
|
187
190
|
- lib/saxon/qname.rb
|
188
191
|
- lib/saxon/s9api.rb
|
192
|
+
- lib/saxon/sequence_type.rb
|
189
193
|
- lib/saxon/serializer.rb
|
190
194
|
- lib/saxon/source.rb
|
191
195
|
- lib/saxon/version.rb
|
@@ -209,9 +213,7 @@ files:
|
|
209
213
|
- lib/saxon/xslt/compiler.rb
|
210
214
|
- lib/saxon/xslt/evaluation_context.rb
|
211
215
|
- lib/saxon/xslt/executable.rb
|
212
|
-
- lib/saxon_jars.rb
|
213
216
|
- saxon-rb.gemspec
|
214
|
-
- saxon.gemspec
|
215
217
|
homepage: https://github.com/fidothe/saxon-rb
|
216
218
|
licenses:
|
217
219
|
- MIT
|
@@ -231,9 +233,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
231
233
|
- !ruby/object:Gem::Version
|
232
234
|
version: '0'
|
233
235
|
requirements:
|
234
|
-
- jar net.sf.saxon, Saxon-HE, 9.9.1-
|
236
|
+
- jar net.sf.saxon, Saxon-HE, 9.9.1-6
|
235
237
|
rubyforge_project:
|
236
|
-
rubygems_version: 2.7.
|
238
|
+
rubygems_version: 2.7.10
|
237
239
|
signing_key:
|
238
240
|
specification_version: 4
|
239
241
|
summary: Saxon 9.9 for JRuby, with an idiomatic Ruby API
|
data/saxon.gemspec
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
3
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require 'saxon/version'
|
5
|
-
|
6
|
-
Gem::Specification.new do |spec|
|
7
|
-
spec.name = 'saxon'
|
8
|
-
spec.version = Saxon::VERSION
|
9
|
-
spec.authors = ['Matt Patterson']
|
10
|
-
spec.email = ['matt@werkstatt.io']
|
11
|
-
|
12
|
-
spec.description = %q{Deprecated version of the Saxon XML and XSLT library wrapper.
|
13
|
-
|
14
|
-
The gem has been renamed saxon-rb. This gem depends on that gem. To continue to see updates, please replace saxon with saxon-rb in your Gemfiles.
|
15
|
-
|
16
|
-
This gem has a hard dependency on version #{Saxon::VERSION} of saxon-rb, but will never be updated.
|
17
|
-
}
|
18
|
-
spec.summary = %q{Saxon 9.9 for JRuby, with an idiomatic Ruby API, now renamed to saxon-rb}
|
19
|
-
spec.homepage = "https://github.com/fidothe/saxon-rb"
|
20
|
-
spec.license = 'MIT'
|
21
|
-
spec.platform = 'java'
|
22
|
-
spec.post_install_message = "saxon has been renamed to saxon-rb. Please rename in your Gemfile or gemspec (that's all you need to do). This gem won't get any new updates."
|
23
|
-
|
24
|
-
spec.files = %w{LICENSE.txt saxon.gemspec lib}
|
25
|
-
spec.bindir = 'exe'
|
26
|
-
spec.executables = []
|
27
|
-
spec.require_paths = ['lib']
|
28
|
-
|
29
|
-
spec.add_runtime_dependency 'saxon-rb', Saxon::VERSION
|
30
|
-
end
|