saxon-rb 0.7.3-java → 0.8.0-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c17f2a7367744b11c9ffdcf65e191dee9859cc3887902ce98291e52cea245080
4
- data.tar.gz: 919c7e5a00c629ecc5d6193ce9f4836b0fb55ae1a4e80673347856d8ad4c5ce1
3
+ metadata.gz: 0f64f4275c045d5c04eb96e092b6861b53b37cfaf1adf22b76f09474ed1db90e
4
+ data.tar.gz: 50323528f2b6cf98f0278d6dd1aab944d9fa519a547a2cca2b004bd204ac1ade
5
5
  SHA512:
6
- metadata.gz: 5781e2bd70022ed23b2b649de4dcffef94abf400f9d0ab71ee28a8b711f74c7fd4efec02d5a88221ffcd14a99663f9be27413c12de312aa419c217ac26eaf250
7
- data.tar.gz: 6d13e4918a6140693ec1e3dbcbb07bcefbcac9afa49cfd76edec287254b795bdf49ee91cdee2b08def37258c7e466675dbca6f56c04628c9b4bb1cd77b9e91da
6
+ metadata.gz: 3ed2f83a9018e8fcf2fcd9af3b45d922c0c8ea9b943576139ad3857acf967c317b59b787cb5ba0c7b3134e08addfada7dde7c5ca9b9cbbd6dbbfc836466ff478
7
+ data.tar.gz: 9bc2b5c0e9464d1586895795a3518dca263435040fb19c2e0bccb86991d7dd6e0cd8db906c2e90fc233c0832ddc795d7d515bb4fd9612c3b60cf3458d4288dbf
@@ -24,24 +24,12 @@ jobs:
24
24
  name: Bundle Install
25
25
  command: bundle check || bundle install
26
26
  - run:
27
- name: Install Code Climate Test Reporter
28
- command: |
29
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
30
- chmod +x ./cc-test-reporter
31
- - run:
32
- name: Run the tests, and upload coverage data to Code Climate
27
+ name: Run the tests
33
28
  command: |-
34
- ./cc-test-reporter before-build
35
29
  mkdir -p /tmp/test-results
36
30
  VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
37
- if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-jar-loading-alt-saxon.json"; fi
38
31
  rm -rf coverage
39
32
  bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
40
- if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-main-alt-saxon.json"; fi
41
- - persist_to_workspace:
42
- root: "~/project"
43
- paths:
44
- - cc-coverage*
45
33
  - store_test_results:
46
34
  path: "/tmp/test-results"
47
35
  - store_artifacts:
@@ -61,24 +49,12 @@ jobs:
61
49
  name: Bundle Install
62
50
  command: bundle check || bundle install
63
51
  - run:
64
- name: Install Code Climate Test Reporter
65
- command: |
66
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
67
- chmod +x ./cc-test-reporter
68
- - run:
69
- name: Run the tests, and upload coverage data to Code Climate
52
+ name: Run the tests
70
53
  command: |-
71
- ./cc-test-reporter before-build
72
54
  mkdir -p /tmp/test-results
73
55
  VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
74
- if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-jar-loading.json"; fi
75
56
  rm -rf coverage
76
57
  bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
77
- if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-main.json"; fi
78
- - persist_to_workspace:
79
- root: "~/project"
80
- paths:
81
- - cc-coverage*
82
58
  - store_test_results:
83
59
  path: "/tmp/test-results"
84
60
  - store_artifacts:
@@ -261,9 +237,564 @@ jobs:
261
237
  - store_artifacts:
262
238
  path: "/tmp/test-results"
263
239
  destination: test-results
264
- JRuby 9.2.10.0-SNAPSHOT-latest, JDK 8 Saxon HE 9.8:
240
+ JRuby 9.2.10.0, JDK 8 Saxon HE 9.8:
241
+ docker:
242
+ - image: fidothe/circleci:jruby-9.2.10.0-8-jdk-slim
243
+ environment:
244
+ BUNDLE_JOBS: 3
245
+ BUNDLE_RETRY: 3
246
+ BUNDLE_PATH: vendor/bundle
247
+ JRUBY_OPTS: "--dev --debug"
248
+ ALTERNATE_SAXON_HOME: "/tmp/saxon"
249
+ steps:
250
+ - checkout
251
+ - run:
252
+ name: Download SaxonHE9-8-0-15J.zip
253
+ command: |-
254
+ mkdir -p /tmp/saxon
255
+ cd /tmp/saxon
256
+ curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
257
+ unzip SaxonHE9-8-0-15J.zip
258
+ rm -f SaxonHE9-8-0-15J.zip
259
+ - run:
260
+ name: Bundle Install
261
+ command: bundle check || bundle install
262
+ - run:
263
+ name: Run the tests
264
+ command: |-
265
+ mkdir -p /tmp/test-results
266
+ VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
267
+ rm -rf coverage
268
+ bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
269
+ - store_test_results:
270
+ path: "/tmp/test-results"
271
+ - store_artifacts:
272
+ path: "/tmp/test-results"
273
+ destination: test-results
274
+ JRuby 9.2.10.0, JDK 8:
275
+ docker:
276
+ - image: fidothe/circleci:jruby-9.2.10.0-8-jdk-slim
277
+ environment:
278
+ BUNDLE_JOBS: 3
279
+ BUNDLE_RETRY: 3
280
+ BUNDLE_PATH: vendor/bundle
281
+ JRUBY_OPTS: "--dev --debug"
282
+ steps:
283
+ - checkout
284
+ - run:
285
+ name: Bundle Install
286
+ command: bundle check || bundle install
287
+ - run:
288
+ name: Run the tests
289
+ command: |-
290
+ mkdir -p /tmp/test-results
291
+ VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
292
+ rm -rf coverage
293
+ bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
294
+ - store_test_results:
295
+ path: "/tmp/test-results"
296
+ - store_artifacts:
297
+ path: "/tmp/test-results"
298
+ destination: test-results
299
+ JRuby 9.2.10.0, JDK 11 Saxon HE 9.8:
300
+ docker:
301
+ - image: fidothe/circleci:jruby-9.2.10.0-11-jdk-slim
302
+ environment:
303
+ BUNDLE_JOBS: 3
304
+ BUNDLE_RETRY: 3
305
+ BUNDLE_PATH: vendor/bundle
306
+ JRUBY_OPTS: "--dev --debug"
307
+ ALTERNATE_SAXON_HOME: "/tmp/saxon"
308
+ steps:
309
+ - checkout
310
+ - run:
311
+ name: Download SaxonHE9-8-0-15J.zip
312
+ command: |-
313
+ mkdir -p /tmp/saxon
314
+ cd /tmp/saxon
315
+ curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
316
+ unzip SaxonHE9-8-0-15J.zip
317
+ rm -f SaxonHE9-8-0-15J.zip
318
+ - run:
319
+ name: Bundle Install
320
+ command: bundle check || bundle install
321
+ - run:
322
+ name: Run the tests
323
+ command: |-
324
+ mkdir -p /tmp/test-results
325
+ VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
326
+ rm -rf coverage
327
+ bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
328
+ - store_test_results:
329
+ path: "/tmp/test-results"
330
+ - store_artifacts:
331
+ path: "/tmp/test-results"
332
+ destination: test-results
333
+ JRuby 9.2.10.0, JDK 11:
334
+ docker:
335
+ - image: fidothe/circleci:jruby-9.2.10.0-11-jdk-slim
336
+ environment:
337
+ BUNDLE_JOBS: 3
338
+ BUNDLE_RETRY: 3
339
+ BUNDLE_PATH: vendor/bundle
340
+ JRUBY_OPTS: "--dev --debug"
341
+ steps:
342
+ - checkout
343
+ - run:
344
+ name: Bundle Install
345
+ command: bundle check || bundle install
346
+ - run:
347
+ name: Run the tests
348
+ command: |-
349
+ mkdir -p /tmp/test-results
350
+ VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
351
+ rm -rf coverage
352
+ bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
353
+ - store_test_results:
354
+ path: "/tmp/test-results"
355
+ - store_artifacts:
356
+ path: "/tmp/test-results"
357
+ destination: test-results
358
+ JRuby 9.2.10.0, JDK 13 Saxon HE 9.8:
359
+ docker:
360
+ - image: fidothe/circleci:jruby-9.2.10.0-13-jdk-slim
361
+ environment:
362
+ BUNDLE_JOBS: 3
363
+ BUNDLE_RETRY: 3
364
+ BUNDLE_PATH: vendor/bundle
365
+ JRUBY_OPTS: "--dev --debug"
366
+ ALTERNATE_SAXON_HOME: "/tmp/saxon"
367
+ steps:
368
+ - checkout
369
+ - run:
370
+ name: Download SaxonHE9-8-0-15J.zip
371
+ command: |-
372
+ mkdir -p /tmp/saxon
373
+ cd /tmp/saxon
374
+ curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
375
+ unzip SaxonHE9-8-0-15J.zip
376
+ rm -f SaxonHE9-8-0-15J.zip
377
+ - run:
378
+ name: Bundle Install
379
+ command: bundle check || bundle install
380
+ - run:
381
+ name: Run the tests
382
+ command: |-
383
+ mkdir -p /tmp/test-results
384
+ VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
385
+ rm -rf coverage
386
+ bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
387
+ - store_test_results:
388
+ path: "/tmp/test-results"
389
+ - store_artifacts:
390
+ path: "/tmp/test-results"
391
+ destination: test-results
392
+ JRuby 9.2.10.0, JDK 13:
393
+ docker:
394
+ - image: fidothe/circleci:jruby-9.2.10.0-13-jdk-slim
395
+ environment:
396
+ BUNDLE_JOBS: 3
397
+ BUNDLE_RETRY: 3
398
+ BUNDLE_PATH: vendor/bundle
399
+ JRUBY_OPTS: "--dev --debug"
400
+ steps:
401
+ - checkout
402
+ - run:
403
+ name: Bundle Install
404
+ command: bundle check || bundle install
405
+ - run:
406
+ name: Run the tests
407
+ command: |-
408
+ mkdir -p /tmp/test-results
409
+ VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
410
+ rm -rf coverage
411
+ bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
412
+ - store_test_results:
413
+ path: "/tmp/test-results"
414
+ - store_artifacts:
415
+ path: "/tmp/test-results"
416
+ destination: test-results
417
+ JRuby 9.2.11.1, JDK 8 Saxon HE 9.8:
418
+ docker:
419
+ - image: fidothe/circleci:jruby-9.2.11.1-8-jdk-slim
420
+ environment:
421
+ BUNDLE_JOBS: 3
422
+ BUNDLE_RETRY: 3
423
+ BUNDLE_PATH: vendor/bundle
424
+ JRUBY_OPTS: "--dev --debug"
425
+ ALTERNATE_SAXON_HOME: "/tmp/saxon"
426
+ steps:
427
+ - checkout
428
+ - run:
429
+ name: Download SaxonHE9-8-0-15J.zip
430
+ command: |-
431
+ mkdir -p /tmp/saxon
432
+ cd /tmp/saxon
433
+ curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
434
+ unzip SaxonHE9-8-0-15J.zip
435
+ rm -f SaxonHE9-8-0-15J.zip
436
+ - run:
437
+ name: Bundle Install
438
+ command: bundle check || bundle install
439
+ - run:
440
+ name: Run the tests
441
+ command: |-
442
+ mkdir -p /tmp/test-results
443
+ VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
444
+ rm -rf coverage
445
+ bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
446
+ - store_test_results:
447
+ path: "/tmp/test-results"
448
+ - store_artifacts:
449
+ path: "/tmp/test-results"
450
+ destination: test-results
451
+ JRuby 9.2.11.1, JDK 8:
452
+ docker:
453
+ - image: fidothe/circleci:jruby-9.2.11.1-8-jdk-slim
454
+ environment:
455
+ BUNDLE_JOBS: 3
456
+ BUNDLE_RETRY: 3
457
+ BUNDLE_PATH: vendor/bundle
458
+ JRUBY_OPTS: "--dev --debug"
459
+ steps:
460
+ - checkout
461
+ - run:
462
+ name: Bundle Install
463
+ command: bundle check || bundle install
464
+ - run:
465
+ name: Run the tests
466
+ command: |-
467
+ mkdir -p /tmp/test-results
468
+ VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
469
+ rm -rf coverage
470
+ bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
471
+ - store_test_results:
472
+ path: "/tmp/test-results"
473
+ - store_artifacts:
474
+ path: "/tmp/test-results"
475
+ destination: test-results
476
+ JRuby 9.2.11.1, JDK 11 Saxon HE 9.8:
477
+ docker:
478
+ - image: fidothe/circleci:jruby-9.2.11.1-11-jdk-slim
479
+ environment:
480
+ BUNDLE_JOBS: 3
481
+ BUNDLE_RETRY: 3
482
+ BUNDLE_PATH: vendor/bundle
483
+ JRUBY_OPTS: "--dev --debug"
484
+ ALTERNATE_SAXON_HOME: "/tmp/saxon"
485
+ steps:
486
+ - checkout
487
+ - run:
488
+ name: Download SaxonHE9-8-0-15J.zip
489
+ command: |-
490
+ mkdir -p /tmp/saxon
491
+ cd /tmp/saxon
492
+ curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
493
+ unzip SaxonHE9-8-0-15J.zip
494
+ rm -f SaxonHE9-8-0-15J.zip
495
+ - run:
496
+ name: Bundle Install
497
+ command: bundle check || bundle install
498
+ - run:
499
+ name: Run the tests
500
+ command: |-
501
+ mkdir -p /tmp/test-results
502
+ VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
503
+ rm -rf coverage
504
+ bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
505
+ - store_test_results:
506
+ path: "/tmp/test-results"
507
+ - store_artifacts:
508
+ path: "/tmp/test-results"
509
+ destination: test-results
510
+ JRuby 9.2.11.1, JDK 11:
511
+ docker:
512
+ - image: fidothe/circleci:jruby-9.2.11.1-11-jdk-slim
513
+ environment:
514
+ BUNDLE_JOBS: 3
515
+ BUNDLE_RETRY: 3
516
+ BUNDLE_PATH: vendor/bundle
517
+ JRUBY_OPTS: "--dev --debug"
518
+ steps:
519
+ - checkout
520
+ - run:
521
+ name: Bundle Install
522
+ command: bundle check || bundle install
523
+ - run:
524
+ name: Run the tests
525
+ command: |-
526
+ mkdir -p /tmp/test-results
527
+ VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
528
+ rm -rf coverage
529
+ bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
530
+ - store_test_results:
531
+ path: "/tmp/test-results"
532
+ - store_artifacts:
533
+ path: "/tmp/test-results"
534
+ destination: test-results
535
+ JRuby 9.2.11.1, JDK 13 Saxon HE 9.8:
536
+ docker:
537
+ - image: fidothe/circleci:jruby-9.2.11.1-13-jdk-slim
538
+ environment:
539
+ BUNDLE_JOBS: 3
540
+ BUNDLE_RETRY: 3
541
+ BUNDLE_PATH: vendor/bundle
542
+ JRUBY_OPTS: "--dev --debug"
543
+ ALTERNATE_SAXON_HOME: "/tmp/saxon"
544
+ steps:
545
+ - checkout
546
+ - run:
547
+ name: Download SaxonHE9-8-0-15J.zip
548
+ command: |-
549
+ mkdir -p /tmp/saxon
550
+ cd /tmp/saxon
551
+ curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
552
+ unzip SaxonHE9-8-0-15J.zip
553
+ rm -f SaxonHE9-8-0-15J.zip
554
+ - run:
555
+ name: Bundle Install
556
+ command: bundle check || bundle install
557
+ - run:
558
+ name: Run the tests
559
+ command: |-
560
+ mkdir -p /tmp/test-results
561
+ VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
562
+ rm -rf coverage
563
+ bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
564
+ - store_test_results:
565
+ path: "/tmp/test-results"
566
+ - store_artifacts:
567
+ path: "/tmp/test-results"
568
+ destination: test-results
569
+ JRuby 9.2.11.1, JDK 13:
570
+ docker:
571
+ - image: fidothe/circleci:jruby-9.2.11.1-13-jdk-slim
572
+ environment:
573
+ BUNDLE_JOBS: 3
574
+ BUNDLE_RETRY: 3
575
+ BUNDLE_PATH: vendor/bundle
576
+ JRUBY_OPTS: "--dev --debug"
577
+ steps:
578
+ - checkout
579
+ - run:
580
+ name: Bundle Install
581
+ command: bundle check || bundle install
582
+ - run:
583
+ name: Run the tests
584
+ command: |-
585
+ mkdir -p /tmp/test-results
586
+ VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
587
+ rm -rf coverage
588
+ bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
589
+ - store_test_results:
590
+ path: "/tmp/test-results"
591
+ - store_artifacts:
592
+ path: "/tmp/test-results"
593
+ destination: test-results
594
+ JRuby 9.2.12.0, JDK 8 Saxon HE 9.8:
595
+ docker:
596
+ - image: fidothe/circleci:jruby-9.2.12.0-8-jdk-slim
597
+ environment:
598
+ BUNDLE_JOBS: 3
599
+ BUNDLE_RETRY: 3
600
+ BUNDLE_PATH: vendor/bundle
601
+ JRUBY_OPTS: "--dev --debug"
602
+ ALTERNATE_SAXON_HOME: "/tmp/saxon"
603
+ steps:
604
+ - checkout
605
+ - run:
606
+ name: Download SaxonHE9-8-0-15J.zip
607
+ command: |-
608
+ mkdir -p /tmp/saxon
609
+ cd /tmp/saxon
610
+ curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
611
+ unzip SaxonHE9-8-0-15J.zip
612
+ rm -f SaxonHE9-8-0-15J.zip
613
+ - run:
614
+ name: Bundle Install
615
+ command: bundle check || bundle install
616
+ - run:
617
+ name: Install Code Climate Test Reporter
618
+ command: |
619
+ curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
620
+ chmod +x ./cc-test-reporter
621
+ - run:
622
+ name: Run the tests, and upload coverage data to Code Climate
623
+ command: |-
624
+ ./cc-test-reporter before-build
625
+ mkdir -p /tmp/test-results
626
+ VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
627
+ if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-jar-loading-alt-saxon.json"; fi
628
+ rm -rf coverage
629
+ bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
630
+ if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-main-alt-saxon.json"; fi
631
+ - persist_to_workspace:
632
+ root: "~/project"
633
+ paths:
634
+ - cc-coverage*
635
+ - store_test_results:
636
+ path: "/tmp/test-results"
637
+ - store_artifacts:
638
+ path: "/tmp/test-results"
639
+ destination: test-results
640
+ JRuby 9.2.12.0, JDK 8:
641
+ docker:
642
+ - image: fidothe/circleci:jruby-9.2.12.0-8-jdk-slim
643
+ environment:
644
+ BUNDLE_JOBS: 3
645
+ BUNDLE_RETRY: 3
646
+ BUNDLE_PATH: vendor/bundle
647
+ JRUBY_OPTS: "--dev --debug"
648
+ steps:
649
+ - checkout
650
+ - run:
651
+ name: Bundle Install
652
+ command: bundle check || bundle install
653
+ - run:
654
+ name: Install Code Climate Test Reporter
655
+ command: |
656
+ curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
657
+ chmod +x ./cc-test-reporter
658
+ - run:
659
+ name: Run the tests, and upload coverage data to Code Climate
660
+ command: |-
661
+ ./cc-test-reporter before-build
662
+ mkdir -p /tmp/test-results
663
+ VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
664
+ if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-jar-loading.json"; fi
665
+ rm -rf coverage
666
+ bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
667
+ if [ $? -eq 0 ]; then ./cc-test-reporter format-coverage -t simplecov -o "cc-coverage-main.json"; fi
668
+ - persist_to_workspace:
669
+ root: "~/project"
670
+ paths:
671
+ - cc-coverage*
672
+ - store_test_results:
673
+ path: "/tmp/test-results"
674
+ - store_artifacts:
675
+ path: "/tmp/test-results"
676
+ destination: test-results
677
+ JRuby 9.2.12.0, JDK 11 Saxon HE 9.8:
678
+ docker:
679
+ - image: fidothe/circleci:jruby-9.2.12.0-11-jdk-slim
680
+ environment:
681
+ BUNDLE_JOBS: 3
682
+ BUNDLE_RETRY: 3
683
+ BUNDLE_PATH: vendor/bundle
684
+ JRUBY_OPTS: "--dev --debug"
685
+ ALTERNATE_SAXON_HOME: "/tmp/saxon"
686
+ steps:
687
+ - checkout
688
+ - run:
689
+ name: Download SaxonHE9-8-0-15J.zip
690
+ command: |-
691
+ mkdir -p /tmp/saxon
692
+ cd /tmp/saxon
693
+ curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
694
+ unzip SaxonHE9-8-0-15J.zip
695
+ rm -f SaxonHE9-8-0-15J.zip
696
+ - run:
697
+ name: Bundle Install
698
+ command: bundle check || bundle install
699
+ - run:
700
+ name: Run the tests
701
+ command: |-
702
+ mkdir -p /tmp/test-results
703
+ VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
704
+ rm -rf coverage
705
+ bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
706
+ - store_test_results:
707
+ path: "/tmp/test-results"
708
+ - store_artifacts:
709
+ path: "/tmp/test-results"
710
+ destination: test-results
711
+ JRuby 9.2.12.0, JDK 11:
712
+ docker:
713
+ - image: fidothe/circleci:jruby-9.2.12.0-11-jdk-slim
714
+ environment:
715
+ BUNDLE_JOBS: 3
716
+ BUNDLE_RETRY: 3
717
+ BUNDLE_PATH: vendor/bundle
718
+ JRUBY_OPTS: "--dev --debug"
719
+ steps:
720
+ - checkout
721
+ - run:
722
+ name: Bundle Install
723
+ command: bundle check || bundle install
724
+ - run:
725
+ name: Run the tests
726
+ command: |-
727
+ mkdir -p /tmp/test-results
728
+ VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
729
+ rm -rf coverage
730
+ bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
731
+ - store_test_results:
732
+ path: "/tmp/test-results"
733
+ - store_artifacts:
734
+ path: "/tmp/test-results"
735
+ destination: test-results
736
+ JRuby 9.2.12.0, JDK 13 Saxon HE 9.8:
737
+ docker:
738
+ - image: fidothe/circleci:jruby-9.2.12.0-13-jdk-slim
739
+ environment:
740
+ BUNDLE_JOBS: 3
741
+ BUNDLE_RETRY: 3
742
+ BUNDLE_PATH: vendor/bundle
743
+ JRUBY_OPTS: "--dev --debug"
744
+ ALTERNATE_SAXON_HOME: "/tmp/saxon"
745
+ steps:
746
+ - checkout
747
+ - run:
748
+ name: Download SaxonHE9-8-0-15J.zip
749
+ command: |-
750
+ mkdir -p /tmp/saxon
751
+ cd /tmp/saxon
752
+ curl -L -O https://sourceforge.net/projects/saxon/files/Saxon-HE/9.8/SaxonHE9-8-0-15J.zip
753
+ unzip SaxonHE9-8-0-15J.zip
754
+ rm -f SaxonHE9-8-0-15J.zip
755
+ - run:
756
+ name: Bundle Install
757
+ command: bundle check || bundle install
758
+ - run:
759
+ name: Run the tests
760
+ command: |-
761
+ mkdir -p /tmp/test-results
762
+ VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
763
+ rm -rf coverage
764
+ bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
765
+ - store_test_results:
766
+ path: "/tmp/test-results"
767
+ - store_artifacts:
768
+ path: "/tmp/test-results"
769
+ destination: test-results
770
+ JRuby 9.2.12.0, JDK 13:
771
+ docker:
772
+ - image: fidothe/circleci:jruby-9.2.12.0-13-jdk-slim
773
+ environment:
774
+ BUNDLE_JOBS: 3
775
+ BUNDLE_RETRY: 3
776
+ BUNDLE_PATH: vendor/bundle
777
+ JRUBY_OPTS: "--dev --debug"
778
+ steps:
779
+ - checkout
780
+ - run:
781
+ name: Bundle Install
782
+ command: bundle check || bundle install
783
+ - run:
784
+ name: Run the tests
785
+ command: |-
786
+ mkdir -p /tmp/test-results
787
+ VERIFY_SAXON_LAZY_LOADING=1 bundle exec rspec spec/jar_loading_spec.rb --options .rspec-jar-loading --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec-jar-loading.xml
788
+ rm -rf coverage
789
+ bundle exec rspec spec --profile 10 --format RspecJunitFormatter --out /tmp/test-results/rspec.xml --format progress
790
+ - store_test_results:
791
+ path: "/tmp/test-results"
792
+ - store_artifacts:
793
+ path: "/tmp/test-results"
794
+ destination: test-results
795
+ JRuby 9.2.13.0-SNAPSHOT-latest, JDK 8 Saxon HE 9.8:
265
796
  docker:
266
- - image: fidothe/circleci:jruby-9.2.10.0-SNAPSHOT-latest-8-jdk-slim
797
+ - image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-8-jdk-slim
267
798
  environment:
268
799
  BUNDLE_JOBS: 3
269
800
  BUNDLE_RETRY: 3
@@ -295,9 +826,9 @@ jobs:
295
826
  - store_artifacts:
296
827
  path: "/tmp/test-results"
297
828
  destination: test-results
298
- JRuby 9.2.10.0-SNAPSHOT-latest, JDK 8:
829
+ JRuby 9.2.13.0-SNAPSHOT-latest, JDK 8:
299
830
  docker:
300
- - image: fidothe/circleci:jruby-9.2.10.0-SNAPSHOT-latest-8-jdk-slim
831
+ - image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-8-jdk-slim
301
832
  environment:
302
833
  BUNDLE_JOBS: 3
303
834
  BUNDLE_RETRY: 3
@@ -320,9 +851,9 @@ jobs:
320
851
  - store_artifacts:
321
852
  path: "/tmp/test-results"
322
853
  destination: test-results
323
- JRuby 9.2.10.0-SNAPSHOT-latest, JDK 11 Saxon HE 9.8:
854
+ JRuby 9.2.13.0-SNAPSHOT-latest, JDK 11 Saxon HE 9.8:
324
855
  docker:
325
- - image: fidothe/circleci:jruby-9.2.10.0-SNAPSHOT-latest-11-jdk-slim
856
+ - image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-11-jdk-slim
326
857
  environment:
327
858
  BUNDLE_JOBS: 3
328
859
  BUNDLE_RETRY: 3
@@ -354,9 +885,9 @@ jobs:
354
885
  - store_artifacts:
355
886
  path: "/tmp/test-results"
356
887
  destination: test-results
357
- JRuby 9.2.10.0-SNAPSHOT-latest, JDK 11:
888
+ JRuby 9.2.13.0-SNAPSHOT-latest, JDK 11:
358
889
  docker:
359
- - image: fidothe/circleci:jruby-9.2.10.0-SNAPSHOT-latest-11-jdk-slim
890
+ - image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-11-jdk-slim
360
891
  environment:
361
892
  BUNDLE_JOBS: 3
362
893
  BUNDLE_RETRY: 3
@@ -379,9 +910,9 @@ jobs:
379
910
  - store_artifacts:
380
911
  path: "/tmp/test-results"
381
912
  destination: test-results
382
- JRuby 9.2.10.0-SNAPSHOT-latest, JDK 13 Saxon HE 9.8:
913
+ JRuby 9.2.13.0-SNAPSHOT-latest, JDK 13 Saxon HE 9.8:
383
914
  docker:
384
- - image: fidothe/circleci:jruby-9.2.10.0-SNAPSHOT-latest-13-jdk-slim
915
+ - image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-13-jdk-slim
385
916
  environment:
386
917
  BUNDLE_JOBS: 3
387
918
  BUNDLE_RETRY: 3
@@ -413,9 +944,9 @@ jobs:
413
944
  - store_artifacts:
414
945
  path: "/tmp/test-results"
415
946
  destination: test-results
416
- JRuby 9.2.10.0-SNAPSHOT-latest, JDK 13:
947
+ JRuby 9.2.13.0-SNAPSHOT-latest, JDK 13:
417
948
  docker:
418
- - image: fidothe/circleci:jruby-9.2.10.0-SNAPSHOT-latest-13-jdk-slim
949
+ - image: fidothe/circleci:jruby-9.2.13.0-SNAPSHOT-latest-13-jdk-slim
419
950
  environment:
420
951
  BUNDLE_JOBS: 3
421
952
  BUNDLE_RETRY: 3
@@ -467,13 +998,31 @@ workflows:
467
998
  - JRuby 9.2.9.0, JDK 13
468
999
  - JRuby 9.1.17.0, JDK 8 Saxon HE 9.8
469
1000
  - JRuby 9.1.17.0, JDK 8
470
- - JRuby 9.2.10.0-SNAPSHOT-latest, JDK 8 Saxon HE 9.8
471
- - JRuby 9.2.10.0-SNAPSHOT-latest, JDK 8
472
- - JRuby 9.2.10.0-SNAPSHOT-latest, JDK 11 Saxon HE 9.8
473
- - JRuby 9.2.10.0-SNAPSHOT-latest, JDK 11
474
- - JRuby 9.2.10.0-SNAPSHOT-latest, JDK 13 Saxon HE 9.8
475
- - JRuby 9.2.10.0-SNAPSHOT-latest, JDK 13
1001
+ - JRuby 9.2.10.0, JDK 8 Saxon HE 9.8
1002
+ - JRuby 9.2.10.0, JDK 8
1003
+ - JRuby 9.2.10.0, JDK 11 Saxon HE 9.8
1004
+ - JRuby 9.2.10.0, JDK 11
1005
+ - JRuby 9.2.10.0, JDK 13 Saxon HE 9.8
1006
+ - JRuby 9.2.10.0, JDK 13
1007
+ - JRuby 9.2.11.1, JDK 8 Saxon HE 9.8
1008
+ - JRuby 9.2.11.1, JDK 8
1009
+ - JRuby 9.2.11.1, JDK 11 Saxon HE 9.8
1010
+ - JRuby 9.2.11.1, JDK 11
1011
+ - JRuby 9.2.11.1, JDK 13 Saxon HE 9.8
1012
+ - JRuby 9.2.11.1, JDK 13
1013
+ - JRuby 9.2.12.0, JDK 8 Saxon HE 9.8
1014
+ - JRuby 9.2.12.0, JDK 8
1015
+ - JRuby 9.2.12.0, JDK 11 Saxon HE 9.8
1016
+ - JRuby 9.2.12.0, JDK 11
1017
+ - JRuby 9.2.12.0, JDK 13 Saxon HE 9.8
1018
+ - JRuby 9.2.12.0, JDK 13
1019
+ - JRuby 9.2.13.0-SNAPSHOT-latest, JDK 8 Saxon HE 9.8
1020
+ - JRuby 9.2.13.0-SNAPSHOT-latest, JDK 8
1021
+ - JRuby 9.2.13.0-SNAPSHOT-latest, JDK 11 Saxon HE 9.8
1022
+ - JRuby 9.2.13.0-SNAPSHOT-latest, JDK 11
1023
+ - JRuby 9.2.13.0-SNAPSHOT-latest, JDK 13 Saxon HE 9.8
1024
+ - JRuby 9.2.13.0-SNAPSHOT-latest, JDK 13
476
1025
  - Report test coverage to Code Climate:
477
1026
  requires:
478
- - JRuby 9.2.9.0, JDK 8 Saxon HE 9.8
479
- - JRuby 9.2.9.0, JDK 8
1027
+ - JRuby 9.2.12.0, JDK 8 Saxon HE 9.8
1028
+ - JRuby 9.2.12.0, JDK 8
data/Rakefile CHANGED
@@ -25,7 +25,7 @@ task :circleci do
25
25
  end
26
26
  end
27
27
  def jruby_image_tags
28
- %w{9.2.9.0 9.1.17.0 9.2.10.0-SNAPSHOT-latest}
28
+ %w{9.2.9.0 9.1.17.0 9.2.10.0 9.2.11.1 9.2.12.0 9.2.13.0-SNAPSHOT-latest}
29
29
  end
30
30
 
31
31
  def jdk_image_tags
@@ -51,7 +51,7 @@ task :circleci do
51
51
 
52
52
  def codeclimate_jobs
53
53
  (alt_saxon_urls.keys << nil).map { |alt_saxon_url|
54
- ["9.2.9.0", "8-jdk-slim", alt_saxon_url]
54
+ ["9.2.12.0", "8-jdk-slim", alt_saxon_url]
55
55
  }
56
56
  end
57
57
 
@@ -0,0 +1,5 @@
1
+ unless Java::net::sf::saxon::s9api::Xslt30Transformer.instance_methods.include?(:setInitialMode)
2
+ class Java::net::sf::saxon::s9api::Xslt30Transformer
3
+ java_alias :setInitialMode, :setInitialMode, [Java::net::sf::saxon::s9api::QName]
4
+ end
5
+ end
@@ -80,6 +80,7 @@ module Saxon
80
80
  end
81
81
  end
82
82
 
83
+ require_relative 'jruby_bug_6197_workaround'
83
84
  @saxon_loaded = true
84
85
  true
85
86
  end
@@ -11,28 +11,28 @@ module Saxon
11
11
  # alternate location for them, if they don't want to use the bundled Saxon
12
12
  # HE
13
13
  def const_missing(name)
14
- Saxon::Loader.load!
15
- begin
16
- const_set(name, imported_classes.const_get(name))
17
- rescue NameError
18
- msg = "uninitialized constant Saxon::S9API::#{name}"
19
- e = NameError.new(msg, name)
20
- raise e
21
- end
14
+ CLASS_IMPORT_SEMAPHORE.synchronize {
15
+ return const_get(name) if const_defined?(name)
16
+ Saxon::Loader.load!
17
+ begin
18
+ const_set(name, imported_classes.const_get(name))
19
+ rescue NameError
20
+ msg = "uninitialized constant Saxon::S9API::#{name}"
21
+ e = NameError.new(msg, name)
22
+ raise e
23
+ end
24
+ }
22
25
  end
23
26
 
24
27
  private
25
28
 
26
29
  def imported_classes
27
- return @imported_classes if instance_variable_defined?(:@imported_classes)
28
- CLASS_IMPORT_SEMAPHORE.synchronize do
29
- @imported_classes = Module.new {
30
- include_package 'net.sf.saxon.s9api'
31
- java_import Java::net.sf.saxon.Configuration
32
- java_import Java::net.sf.saxon.lib.FeatureKeys
33
- java_import Java::net.sf.saxon.lib.ParseOptions
34
- }
35
- end
30
+ @imported_classes ||= Module.new {
31
+ include_package 'net.sf.saxon.s9api'
32
+ java_import Java::net.sf.saxon.Configuration
33
+ java_import Java::net.sf.saxon.lib.FeatureKeys
34
+ java_import Java::net.sf.saxon.lib.ParseOptions
35
+ }
36
36
  end
37
37
  end
38
38
  end
@@ -1,9 +1,9 @@
1
- require 'saxon/s9api'
1
+ require 'saxon/version/library'
2
2
 
3
3
  module Saxon
4
4
  # Provides the saxon-rb and underlying Saxon library versions
5
5
  module Version
6
6
  # The version of the saxon-rb gem (not of Saxon itself)
7
- WRAPPER = "0.7.3"
7
+ WRAPPER = "0.8.0"
8
8
  end
9
9
  end
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.7.3
4
+ version: 0.8.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: 2020-06-25 00:00:00.000000000 Z
11
+ date: 2020-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -17,8 +17,8 @@ dependencies:
17
17
  - !ruby/object:Gem::Version
18
18
  version: '2.0'
19
19
  name: bundler
20
- prerelease: false
21
20
  type: :development
21
+ prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
@@ -31,8 +31,8 @@ dependencies:
31
31
  - !ruby/object:Gem::Version
32
32
  version: '0'
33
33
  name: jar-dependencies
34
- prerelease: false
35
34
  type: :development
35
+ prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ">="
@@ -45,8 +45,8 @@ dependencies:
45
45
  - !ruby/object:Gem::Version
46
46
  version: '12.0'
47
47
  name: rake
48
- prerelease: false
49
48
  type: :development
49
+ prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
@@ -59,8 +59,8 @@ dependencies:
59
59
  - !ruby/object:Gem::Version
60
60
  version: '3.0'
61
61
  name: rspec
62
- prerelease: false
63
62
  type: :development
63
+ prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
@@ -73,8 +73,8 @@ dependencies:
73
73
  - !ruby/object:Gem::Version
74
74
  version: '4.0'
75
75
  name: vcr
76
- prerelease: false
77
76
  type: :development
77
+ prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
@@ -87,8 +87,8 @@ dependencies:
87
87
  - !ruby/object:Gem::Version
88
88
  version: 2.4.0
89
89
  name: addressable
90
- prerelease: false
91
90
  type: :development
91
+ prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
@@ -101,8 +101,8 @@ dependencies:
101
101
  - !ruby/object:Gem::Version
102
102
  version: 2.3.2
103
103
  name: webmock
104
- prerelease: false
105
104
  type: :development
105
+ prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - "~>"
@@ -115,8 +115,8 @@ dependencies:
115
115
  - !ruby/object:Gem::Version
116
116
  version: 0.9.12
117
117
  name: yard
118
- prerelease: false
119
118
  type: :development
119
+ prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - "~>"
@@ -129,8 +129,8 @@ dependencies:
129
129
  - !ruby/object:Gem::Version
130
130
  version: 0.17.1
131
131
  name: simplecov
132
- prerelease: false
133
132
  type: :development
133
+ prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - "~>"
@@ -143,8 +143,8 @@ dependencies:
143
143
  - !ruby/object:Gem::Version
144
144
  version: '0'
145
145
  name: rspec_junit_formatter
146
- prerelease: false
147
146
  type: :development
147
+ prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
150
  - - ">="
@@ -189,6 +189,7 @@ files:
189
189
  - lib/saxon/item_type/lexical_string_conversion.rb
190
190
  - lib/saxon/item_type/value_to_ruby.rb
191
191
  - lib/saxon/jaxp.rb
192
+ - lib/saxon/jruby_bug_6197_workaround.rb
192
193
  - lib/saxon/loader.rb
193
194
  - lib/saxon/nokogiri.rb
194
195
  - lib/saxon/occurrence_indicator.rb
@@ -246,7 +247,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
246
247
  version: '0'
247
248
  requirements:
248
249
  - jar net.sf.saxon, Saxon-HE, 9.9.1-6
249
- rubygems_version: 3.1.3
250
+ rubygems_version: 3.0.6
250
251
  signing_key:
251
252
  specification_version: 4
252
253
  summary: Saxon 9.9 for JRuby, with an idiomatic Ruby API