rice 4.6.0 → 4.6.1
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/CHANGELOG.md +10 -0
- data/include/rice/rice.hpp +408 -153
- data/include/rice/stl.hpp +49 -50
- data/lib/rice/version.rb +1 -1
- data/rice/Buffer.hpp +57 -12
- data/rice/Buffer.ipp +273 -84
- data/rice/Data_Type.hpp +3 -0
- data/rice/Data_Type.ipp +39 -28
- data/rice/detail/NativeAttributeGet.ipp +12 -1
- data/rice/detail/NativeAttributeSet.ipp +3 -21
- data/rice/detail/NativeCallbackFFI.ipp +1 -0
- data/rice/detail/NativeFunction.ipp +1 -0
- data/rice/detail/RubyFunction.ipp +1 -0
- data/rice/detail/Type.ipp +0 -1
- data/rice/stl/vector.ipp +49 -50
- data/rice/traits/attribute_traits.hpp +6 -6
- data/rice/traits/rice_traits.hpp +12 -0
- data/test/test_Attribute.cpp +57 -8
- data/test/test_Buffer.cpp +56 -1
- data/test/test_Data_Object.cpp +1 -1
- data/test/test_From_Ruby.cpp +6 -6
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7751b2018cc34ce9a256db07afdac1c1334f10df1c858e08943cfe65ccc3a0b0
|
4
|
+
data.tar.gz: a8e25ea390438e8ba30450501f955724e25a1fe6fcdc9b0504a393ac60af9585
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ac0157d22f781cf34dd1d4704df142bc42e34d811c73c1e24ef3fbb3247161f2a0e76d80584aadc09eb6d97181dbb4a957518161a9afb89f61166cce08983bc
|
7
|
+
data.tar.gz: 38e129eb196928cba4bf2f003651fc7e273df2abaf605664d76cd036993d70c507e4c31fa4e09e61252c8ef71aa701390c80a2247f20419e95d37a674002be26
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
## 4.6.1 (2025-06-25)
|
2
|
+
* Improve attribute handling. Correctly deal with non-copyable/assignable attributes and return references instead of copies of objects
|
3
|
+
* Improve Buffer implementation to deal with 4 cases:
|
4
|
+
- array of fundamental types (int*)
|
5
|
+
- array of pointers fundamental types (char**)
|
6
|
+
- array of objects (someInstance*)
|
7
|
+
- array of pointers of objects (someInstance**)
|
8
|
+
* Implement Buffer#to_s
|
9
|
+
* Fix header check on Ubuntu 22.04
|
10
|
+
|
1
11
|
## 4.6.0 (2025-06-09)
|
2
12
|
Rice 4.6 is a major release that adds significant new functionality based on wrapping the OpenCV library, including:
|
3
13
|
|