psych 5.2.0 → 5.2.2

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: 4748ac35b1d573594414c02f72cc24d0fcfb885792dc7c4be013424bb7d0b26b
4
- data.tar.gz: a201e890af552f46f31c910e1d9b82f1991be06ae55449a9de6fa1a3104c7638
3
+ metadata.gz: e81adcfc8e167dbe8951e4b32794238a09003e57e75cc9e7f807d90c20aee917
4
+ data.tar.gz: 98cab7d17c5f91abbd84c95b089e71b4928b9554d5a8b154841c1d6d96c63f69
5
5
  SHA512:
6
- metadata.gz: 4ec065c36c24f7a36283dd486aface2d0ca734f94f143624c7e0eaf2c8f70acec73f314059f395341a903bb5a53b6420853c6e6118e79bae5bed75ed13cf6e61
7
- data.tar.gz: 1616afb6813f93f4ff4c96be9093d7a99c9ecff0abacc15858dd6684b3b0d7c987bc59ccb5b9bb8d8f8dbd0850b280314d993a40afcbb5a291713ea63cf2a7d9
6
+ metadata.gz: 9297958a815fe84220641506bc65e17133d2c551cc34d50d0261f95e51d7a19e706b06bb98b59bbde587825f9256f0579a68d250346134f2f766a79c93fa1288
7
+ data.tar.gz: a86c4526fb081f9b18cc13e6f8326c3335e80913013f448bf9ef0d0f741af7d1bdc52392014076fe3b709427e47ae42dce7f4ffe0e896de82c8d3d218e23cfb0
@@ -304,11 +304,12 @@ static VALUE scalar(
304
304
  tag = rb_str_export_to_enc(tag, encoding);
305
305
  }
306
306
 
307
+ const char *value_ptr = StringValuePtr(value);
307
308
  yaml_scalar_event_initialize(
308
309
  &event,
309
310
  (yaml_char_t *)(NIL_P(anchor) ? NULL : StringValueCStr(anchor)),
310
311
  (yaml_char_t *)(NIL_P(tag) ? NULL : StringValueCStr(tag)),
311
- (yaml_char_t*)StringValuePtr(value),
312
+ (yaml_char_t*)value_ptr,
312
313
  (int)RSTRING_LEN(value),
313
314
  plain ? 1 : 0,
314
315
  quoted ? 1 : 0,
@@ -4,8 +4,6 @@ module Psych
4
4
  ###
5
5
  # Scan scalars for built in types
6
6
  class ScalarScanner
7
- autoload :Date, "date"
8
-
9
7
  # Taken from http://yaml.org/type/timestamp.html
10
8
  TIME = /^-?\d{4}-\d{1,2}-\d{1,2}(?:[Tt]|\s+)\d{1,2}:\d\d:\d\d(?:\.\d*)?(?:\s*(?:Z|[-+]\d{1,2}:?(?:\d\d)?))?$/
11
9
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Psych
4
4
  # The version of Psych you are using
5
- VERSION = '5.2.0'
5
+ VERSION = '5.2.2'
6
6
 
7
7
  if RUBY_ENGINE == 'jruby'
8
8
  DEFAULT_SNAKEYAML_VERSION = '2.7'.freeze
@@ -79,7 +79,6 @@ module Psych
79
79
  class_loader.big_decimal._load o.value
80
80
  when "!ruby/object:DateTime"
81
81
  class_loader.date_time
82
- require 'date' unless defined? DateTime
83
82
  t = @ss.parse_time(o.value)
84
83
  DateTime.civil(*t.to_a[0, 6].reverse, Rational(t.utc_offset, 86400)) +
85
84
  (t.subsec/86400)
data/lib/psych.rb CHANGED
@@ -1,4 +1,6 @@
1
1
  # frozen_string_literal: true
2
+ require 'date'
3
+
2
4
  require_relative 'psych/versions'
3
5
  case RUBY_ENGINE
4
6
  when 'jruby'
@@ -84,7 +86,7 @@ require_relative 'psych/class_loader'
84
86
  # Psych.safe_load_file("data.yml", permitted_classes: [Date])
85
87
  # Psych.load_file("trusted_database.yml")
86
88
  #
87
- # ==== Exception handling
89
+ # ==== \Exception handling
88
90
  #
89
91
  # begin
90
92
  # # The second argument changes only the exception contents
@@ -148,7 +150,7 @@ require_relative 'psych/class_loader'
148
150
  # # Returns Psych::Nodes::Document
149
151
  # Psych.parse_file('database.yml')
150
152
  #
151
- # ==== Exception handling
153
+ # ==== \Exception handling
152
154
  #
153
155
  # begin
154
156
  # # The second argument changes only the exception contents
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: psych
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.0
4
+ version: 5.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Patterson
8
8
  - SHIBATA Hiroshi
9
9
  - Charles Oliver Nutter
10
- autorequire:
10
+ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2024-11-07 00:00:00.000000000 Z
13
+ date: 2024-12-18 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: stringio
@@ -26,6 +26,20 @@ dependencies:
26
26
  - - ">="
27
27
  - !ruby/object:Gem::Version
28
28
  version: '0'
29
+ - !ruby/object:Gem::Dependency
30
+ name: date
31
+ requirement: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ type: :runtime
37
+ prerelease: false
38
+ version_requirements: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
29
43
  description: |
30
44
  Psych is a YAML parser and emitter. Psych leverages libyaml[https://pyyaml.org/wiki/LibYAML]
31
45
  for its YAML parsing and emitting capabilities. In addition to wrapping libyaml,
@@ -98,7 +112,7 @@ licenses:
98
112
  metadata:
99
113
  msys2_mingw_dependencies: libyaml
100
114
  changelog_uri: https://github.com/ruby/psych/releases
101
- post_install_message:
115
+ post_install_message:
102
116
  rdoc_options:
103
117
  - "--main"
104
118
  - README.md
@@ -116,7 +130,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
116
130
  version: '0'
117
131
  requirements: []
118
132
  rubygems_version: 3.5.11
119
- signing_key:
133
+ signing_key:
120
134
  specification_version: 4
121
135
  summary: Psych is a YAML parser and emitter
122
136
  test_files: []