rapidyaml 0.1.0-x64-mingw-ucrt → 0.1.3-x64-mingw-ucrt
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/ext/rapidyaml/extconf.rb +3 -1
- data/lib/rapidyaml/3.1/rapidyaml.so +0 -0
- data/lib/rapidyaml/3.2/rapidyaml.so +0 -0
- data/lib/rapidyaml/3.3/rapidyaml.so +0 -0
- data/lib/rapidyaml/3.4/rapidyaml.so +0 -0
- data/lib/rapidyaml/4.0/rapidyaml.so +0 -0
- data/lib/rapidyaml/version.rb +2 -2
- data/rapidyaml.gemspec +1 -3
- metadata +6 -34
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2cc0ecb320751df4fca13ad35b1a4e210e10e0ed1ec9addc8ef143a46d342a26
|
|
4
|
+
data.tar.gz: 5f5573f8ea3e32079168f22b492641c7eb011e5fac6a12b857ae2135e74a7d6d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 35f1f726875920626b9c8b975f1b0892a70616524d4a81c2712878ef498d2603e5659d620b16780e749518b9207aedca8d09f9ed51f1e490af83e4a19459b62a
|
|
7
|
+
data.tar.gz: 3e650c51d79f1620a9a95855506835520ebe542b95d45ceab43e6eae122fb19c3761aa76ccfd8b979ccc3e61f31b75357a7e3dd87eadf210f78c603e60fd365f
|
data/ext/rapidyaml/extconf.rb
CHANGED
|
@@ -7,7 +7,9 @@ require 'mkmf-rice'
|
|
|
7
7
|
|
|
8
8
|
$CXXFLAGS += ' -std=c++17 -O2'
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
unless RbConfig::CONFIG['host_os'] =~ /darwin/
|
|
11
|
+
$LDFLAGS += ' -static-libstdc++ -static-libgcc'
|
|
12
|
+
end
|
|
11
13
|
|
|
12
14
|
create_makefile('rapidyaml/rapidyaml')
|
|
13
15
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/lib/rapidyaml/version.rb
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
# updates during the release process without modifying the main module files.
|
|
10
10
|
|
|
11
11
|
module RapidYAML
|
|
12
|
-
VERSION = '0.1.
|
|
12
|
+
VERSION = '0.1.3'
|
|
13
13
|
end
|
|
14
14
|
|
|
15
|
-
# Copyright (c) 2026 Durable Programming, LLC. All rights reserved.
|
|
15
|
+
# Copyright (c) 2026 Durable Programming, LLC. All rights reserved.
|
data/rapidyaml.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.summary = 'Fast YAML parsing and emission via rapidyaml — drop-in Psych replacement'
|
|
11
11
|
spec.description = 'Ruby bindings to rapidyaml (ryml), a C++ YAML library. ' \
|
|
12
12
|
'Exposes a Psych-compatible API so it can be used as a drop-in replacement.'
|
|
13
|
-
spec.homepage = 'https://github.com/
|
|
13
|
+
spec.homepage = 'https://github.com/durable-oss/rapidyaml'
|
|
14
14
|
spec.license = 'MIT'
|
|
15
15
|
spec.required_ruby_version = '>= 3.1.0'
|
|
16
16
|
|
|
@@ -35,6 +35,4 @@ Gem::Specification.new do |spec|
|
|
|
35
35
|
spec.add_development_dependency 'rake-compiler', '~> 1.2'
|
|
36
36
|
spec.add_development_dependency 'rake-compiler-dock', '~> 1.4'
|
|
37
37
|
spec.add_development_dependency 'rice', '~> 4.0'
|
|
38
|
-
spec.add_development_dependency 'rubocop', '> 1.86.0'
|
|
39
|
-
spec.add_development_dependency 'rubocop-minitest', '> 0.39.0'
|
|
40
38
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rapidyaml
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: x64-mingw-ucrt
|
|
6
6
|
authors:
|
|
7
7
|
- Durable Programming LLC
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 1980-01-
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: minitest
|
|
@@ -79,34 +79,6 @@ dependencies:
|
|
|
79
79
|
- - "~>"
|
|
80
80
|
- !ruby/object:Gem::Version
|
|
81
81
|
version: '4.0'
|
|
82
|
-
- !ruby/object:Gem::Dependency
|
|
83
|
-
name: rubocop
|
|
84
|
-
requirement: !ruby/object:Gem::Requirement
|
|
85
|
-
requirements:
|
|
86
|
-
- - ">"
|
|
87
|
-
- !ruby/object:Gem::Version
|
|
88
|
-
version: 1.86.0
|
|
89
|
-
type: :development
|
|
90
|
-
prerelease: false
|
|
91
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
92
|
-
requirements:
|
|
93
|
-
- - ">"
|
|
94
|
-
- !ruby/object:Gem::Version
|
|
95
|
-
version: 1.86.0
|
|
96
|
-
- !ruby/object:Gem::Dependency
|
|
97
|
-
name: rubocop-minitest
|
|
98
|
-
requirement: !ruby/object:Gem::Requirement
|
|
99
|
-
requirements:
|
|
100
|
-
- - ">"
|
|
101
|
-
- !ruby/object:Gem::Version
|
|
102
|
-
version: 0.39.0
|
|
103
|
-
type: :development
|
|
104
|
-
prerelease: false
|
|
105
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
106
|
-
requirements:
|
|
107
|
-
- - ">"
|
|
108
|
-
- !ruby/object:Gem::Version
|
|
109
|
-
version: 0.39.0
|
|
110
82
|
description: Ruby bindings to rapidyaml (ryml), a C++ YAML library. Exposes a Psych-compatible
|
|
111
83
|
API so it can be used as a drop-in replacement.
|
|
112
84
|
email:
|
|
@@ -130,13 +102,13 @@ files:
|
|
|
130
102
|
- lib/rapidyaml/core_ext/yaml.rb
|
|
131
103
|
- lib/rapidyaml/version.rb
|
|
132
104
|
- rapidyaml.gemspec
|
|
133
|
-
homepage: https://github.com/
|
|
105
|
+
homepage: https://github.com/durable-oss/rapidyaml
|
|
134
106
|
licenses:
|
|
135
107
|
- MIT
|
|
136
108
|
metadata:
|
|
137
|
-
homepage_uri: https://github.com/
|
|
138
|
-
source_code_uri: https://github.com/
|
|
139
|
-
changelog_uri: https://github.com/
|
|
109
|
+
homepage_uri: https://github.com/durable-oss/rapidyaml
|
|
110
|
+
source_code_uri: https://github.com/durable-oss/rapidyaml
|
|
111
|
+
changelog_uri: https://github.com/durable-oss/rapidyaml/blob/main/CHANGELOG.md
|
|
140
112
|
rubygems_mfa_required: 'true'
|
|
141
113
|
rdoc_options: []
|
|
142
114
|
require_paths:
|