rapidyaml 0.1.0-x86_64-linux-musl → 0.1.3-x86_64-linux-musl

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
  SHA256:
3
- metadata.gz: f1ca199389a8123129db4a64b013f10f1cfb359b5b1963227975cf5519e6813a
4
- data.tar.gz: 81dadf477403a6f549d5a0dc08d5ecfc93c0e641975019a14c11f1336b6ed4af
3
+ metadata.gz: f2664249fea336f8a4a7075c94fcaeb201f5543996b401c7fd7b08fcecc158e6
4
+ data.tar.gz: 254f7201f53b32be25eedcb26d68cd481de1c89a6c64f145a95100534bbd49bf
5
5
  SHA512:
6
- metadata.gz: ef15a10a4309db2ff82152085a052e6bec178409dddc9a3b3c64f660b4b2a67a02a116dfff51504e03800d4d56b391da63deed52beb1f4adda44f328897b8d55
7
- data.tar.gz: 49bad8b961cdfcd44e7c5105201c804260b36429feae65e4d2ffd681e7d53437fed1f22b43807ed7e20977e508fb47ec034a7f802b65d66ec90598ce94dc886c
6
+ metadata.gz: 253a45efa26fb97b3fa41d40e2972f7ad4469a41e04a7eb3dd4f7be2c66523732a772ffd5058465eeeb01a0f7aea6bfb2fba2134714dc07834418b1bbfc96528
7
+ data.tar.gz: fbff069255ba5cb6e3ae9216e3977108b8f96245b7298ab2dc251b94e80c645a5229524aa93f0b3ab63fa49d56803dbed0e9ab287a6a78270a35dd86d36a818c
@@ -7,7 +7,9 @@ require 'mkmf-rice'
7
7
 
8
8
  $CXXFLAGS += ' -std=c++17 -O2'
9
9
 
10
- $LDFLAGS += ' -static-libstdc++ -static-libgcc'
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
 
@@ -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.0'
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/durableprogramming/rapidyaml-rb'
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.0
4
+ version: 0.1.3
5
5
  platform: x86_64-linux-musl
6
6
  authors:
7
7
  - Durable Programming LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 1980-01-01 00:00:00.000000000 Z
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:
@@ -131,13 +103,13 @@ files:
131
103
  - lib/rapidyaml/core_ext/yaml.rb
132
104
  - lib/rapidyaml/version.rb
133
105
  - rapidyaml.gemspec
134
- homepage: https://github.com/durableprogramming/rapidyaml-rb
106
+ homepage: https://github.com/durable-oss/rapidyaml
135
107
  licenses:
136
108
  - MIT
137
109
  metadata:
138
- homepage_uri: https://github.com/durableprogramming/rapidyaml-rb
139
- source_code_uri: https://github.com/durableprogramming/rapidyaml-rb
140
- changelog_uri: https://github.com/durableprogramming/rapidyaml-rb/blob/main/CHANGELOG.md
110
+ homepage_uri: https://github.com/durable-oss/rapidyaml
111
+ source_code_uri: https://github.com/durable-oss/rapidyaml
112
+ changelog_uri: https://github.com/durable-oss/rapidyaml/blob/main/CHANGELOG.md
141
113
  rubygems_mfa_required: 'true'
142
114
  rdoc_options: []
143
115
  require_paths: