usamin 7.7.11 → 7.7.12
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/usamin/parser.cpp +1 -1
- data/ext/usamin/rb270_fix.hpp +3 -2
- data/ext/usamin/rb_common.cpp +1 -1
- data/ext/usamin/rb_usamin_array.cpp +0 -1
- data/ext/usamin/rb_usamin_hash.cpp +0 -1
- data/ext/usamin/rb_usamin_value.cpp +0 -1
- data/ext/usamin/rubynized_rapidjson.hpp +1 -0
- data/ext/usamin/usamin.cpp +2 -2
- data/ext/usamin/usamin_value.hpp +1 -1
- data/lib/usamin/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f1416f23892e15634eafdbb8536499e785802ac5ca3ff9ac7bc8a9b6f47add00
|
|
4
|
+
data.tar.gz: cfdb20662dce9920a52a48f0e7c17d82943d94d7212d8ad19897b150291058cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e7ef1f8f1eba35b68a94b28f18865c0bec6b0be3e4c145ab8fd86806fc7deace8d7ca1515c89c51bb35bec7a296db122963226583d1f0351dea38e3ec96ef9c7
|
|
7
|
+
data.tar.gz: 3a456c76021b846a04573bfda63c2dc2ab0935e01571ed61e4dbf05c233bb58a2bbf5af1ffb04a3328ad1696bb353e081065e745bc0f6bb2564445f4935171b7
|
data/ext/usamin/parser.cpp
CHANGED
data/ext/usamin/rb270_fix.hpp
CHANGED
|
@@ -4,13 +4,14 @@
|
|
|
4
4
|
#include <cstring>
|
|
5
5
|
#include <ruby/version.h>
|
|
6
6
|
|
|
7
|
-
#if RUBY_API_VERSION_CODE >= 20700
|
|
7
|
+
#if RUBY_API_VERSION_CODE >= 20700
|
|
8
8
|
|
|
9
9
|
namespace std {
|
|
10
10
|
static inline void *ruby_nonempty_memcpy(void *dest, const void *src, size_t n) {
|
|
11
|
-
return (n ? memcpy(dest, src, n) : dest);
|
|
11
|
+
return (n ? ::memcpy(dest, src, n) : dest);
|
|
12
12
|
}
|
|
13
13
|
} // namespace std
|
|
14
|
+
|
|
14
15
|
#endif
|
|
15
16
|
|
|
16
17
|
#endif
|
data/ext/usamin/rb_common.cpp
CHANGED
data/ext/usamin/usamin.cpp
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
#include <ruby.h>
|
|
2
|
-
#include <ruby/encoding.h>
|
|
3
1
|
#include "generator.hpp"
|
|
4
2
|
#include "parser.hpp"
|
|
5
3
|
#include "rb_usamin_value.hpp"
|
|
6
4
|
#include "rb_usamin_hash.hpp"
|
|
7
5
|
#include "rb_usamin_array.hpp"
|
|
6
|
+
#include <ruby.h>
|
|
7
|
+
#include <ruby/encoding.h>
|
|
8
8
|
|
|
9
9
|
#if SIZEOF_VALUE < SIZEOF_VOIDP
|
|
10
10
|
#error SIZEOF_VOIDP must not be greater than SIZEOF_VALUE.
|
data/ext/usamin/usamin_value.hpp
CHANGED
data/lib/usamin/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: usamin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.7.
|
|
4
|
+
version: 7.7.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ishotihadus
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-06-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -126,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
126
126
|
- !ruby/object:Gem::Version
|
|
127
127
|
version: '0'
|
|
128
128
|
requirements: []
|
|
129
|
-
rubygems_version: 3.
|
|
129
|
+
rubygems_version: 3.3.3
|
|
130
130
|
signing_key:
|
|
131
131
|
specification_version: 4
|
|
132
132
|
summary: A RapidJSON Wrapper for Ruby
|