psych 2.2.2-java → 2.2.3-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c0a58d2ed5dca183df559e687f117c2ae9865945
4
- data.tar.gz: b9c599dc17508b3ff061ed208befa1e16f3414e6
3
+ metadata.gz: a28e7d62abd69d7be998c8cf96e89b10f104d1ca
4
+ data.tar.gz: f71d49d89806a1afd790d0e44eddf8a83088990e
5
5
  SHA512:
6
- metadata.gz: 5c48c9fe83330515c8ac2412db786be62c12e6976597e7e6c170f6246af520ddbbef3c45d19cc7d8e295c4597b7b319bf716c2bf4a868f960596eef76107d018
7
- data.tar.gz: c4a73ccd603f874b65e98c0db1052c81bd795dd9e4fa5a86aa0f650124996bcc526221b4e795a0aece2bed9aef55e27310c0dcb47a062f5bef781d2846e1ea96
6
+ metadata.gz: afeaf8b677eeb782fc846f434e7f39cd1594917478aa81a6e531d351e8824683e45753baf1b030cb2a628cbae4ff2f4e66b0aa29663fda62d6e5a69bd1803f58
7
+ data.tar.gz: b479be0066a073f35514210ee524baa54a17af633e28ea7bc6fe271f653c500b7ee9e19a542cc0c53097a01a03f6152ef3cc0e42d6a705446f2c5efa26292ccb
data/Rakefile CHANGED
@@ -1,5 +1,3 @@
1
- $LOAD_PATH.unshift './lib'
2
- load 'psych/versions.rb'
3
1
  require "bundler/gem_tasks"
4
2
  require "rake/testtask"
5
3
 
@@ -19,7 +17,7 @@ if RUBY_PLATFORM =~ /java/
19
17
  # and tell maven via system properties the snakeyaml version
20
18
  # this is basically the same as running from the commandline:
21
19
  # rmvn dependency:build-classpath -Dsnakeyaml.version='use version from Psych::DEFAULT_SNAKEYAML_VERSION here'
22
- Maven::Ruby::Maven.new.exec('dependency:build-classpath', "-Dsnakeyaml.version=1.17", '-Dverbose=true')
20
+ Maven::Ruby::Maven.new.exec('dependency:build-classpath', "-Dsnakeyaml.version=1.18", '-Dverbose=true')
23
21
  ext.source_version = '1.7'
24
22
  ext.target_version = '1.7'
25
23
  ext.classpath = File.read('pkg/classpath')
@@ -1493,7 +1493,7 @@ yaml_emitter_analyze_scalar(yaml_emitter_t *emitter,
1493
1493
  int break_space = 0;
1494
1494
  int space_break = 0;
1495
1495
 
1496
- int preceeded_by_whitespace = 0;
1496
+ int preceded_by_whitespace = 0;
1497
1497
  int followed_by_whitespace = 0;
1498
1498
  int previous_space = 0;
1499
1499
  int previous_break = 0;
@@ -1524,7 +1524,7 @@ yaml_emitter_analyze_scalar(yaml_emitter_t *emitter,
1524
1524
  flow_indicators = 1;
1525
1525
  }
1526
1526
 
1527
- preceeded_by_whitespace = 1;
1527
+ preceded_by_whitespace = 1;
1528
1528
  followed_by_whitespace = IS_BLANKZ_AT(string, WIDTH(string));
1529
1529
 
1530
1530
  while (string.pointer != string.end)
@@ -1570,7 +1570,7 @@ yaml_emitter_analyze_scalar(yaml_emitter_t *emitter,
1570
1570
  }
1571
1571
  }
1572
1572
 
1573
- if (CHECK(string, '#') && preceeded_by_whitespace) {
1573
+ if (CHECK(string, '#') && preceded_by_whitespace) {
1574
1574
  flow_indicators = 1;
1575
1575
  block_indicators = 1;
1576
1576
  }
@@ -1619,7 +1619,7 @@ yaml_emitter_analyze_scalar(yaml_emitter_t *emitter,
1619
1619
  previous_break = 0;
1620
1620
  }
1621
1621
 
1622
- preceeded_by_whitespace = IS_BLANKZ(string);
1622
+ preceded_by_whitespace = IS_BLANKZ(string);
1623
1623
  MOVE(string);
1624
1624
  if (string.pointer != string.end) {
1625
1625
  followed_by_whitespace = IS_BLANKZ_AT(string, WIDTH(string));
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: false
2
2
  module Psych
3
3
  # The version is Psych you're using
4
- VERSION = '2.2.2'
4
+ VERSION = '2.2.3'
5
5
 
6
6
  if RUBY_ENGINE == 'jruby'
7
- DEFAULT_SNAKEYAML_VERSION = '1.17'.freeze
7
+ DEFAULT_SNAKEYAML_VERSION = '1.18'.freeze
8
8
  end
9
9
  end
@@ -1,10 +1,8 @@
1
1
  # -*- encoding: utf-8 -*-
2
- $:.unshift File.expand_path("../lib", __FILE__)
3
- require 'psych'
4
2
 
5
3
  Gem::Specification.new do |s|
6
4
  s.name = "psych"
7
- s.version = "2.2.2"
5
+ s.version = "2.2.3"
8
6
  s.authors = ["Aaron Patterson", "SHIBATA Hiroshi", "Charles Oliver Nutter"]
9
7
  s.email = ["aaron@tenderlovemaking.com", "hsbt@ruby-lang.org", "headius@headius.com"]
10
8
  s.date = "2016-11-14"
@@ -34,7 +32,7 @@ DESCRIPTION
34
32
  if RUBY_ENGINE == 'jruby'
35
33
  s.platform = 'java'
36
34
  s.files.concat ["ext/java/PsychEmitter.java", "ext/java/PsychLibrary.java", "ext/java/PsychParser.java", "ext/java/PsychToRuby.java", "ext/java/PsychYamlTree.java", "lib/psych_jars.rb", "lib/psych.jar"]
37
- s.requirements = "jar org.yaml:snakeyaml, 1.17"
35
+ s.requirements = "jar org.yaml:snakeyaml, 1.18"
38
36
  s.add_dependency 'jar-dependencies', '>= 0.1.7'
39
37
  s.add_development_dependency 'ruby-maven'
40
38
  else
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: psych
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.2
4
+ version: 2.2.3
5
5
  platform: java
6
6
  authors:
7
7
  - Aaron Patterson
@@ -183,10 +183,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
183
183
  - !ruby/object:Gem::Version
184
184
  version: '0'
185
185
  requirements:
186
- - jar org.yaml:snakeyaml, 1.17
186
+ - jar org.yaml:snakeyaml, 1.18
187
187
  rubyforge_project:
188
188
  rubygems_version: 2.6.8
189
189
  signing_key:
190
190
  specification_version: 4
191
191
  summary: Psych is a YAML parser and emitter
192
192
  test_files: []
193
+ has_rdoc: