rice 4.0.2 → 4.0.3
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/include/rice/rice.hpp +4 -4
- data/lib/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 523fdd81cea4f2ee375b9865c8f3a097515c94341b25d1b0a9c7411720b9586f
|
|
4
|
+
data.tar.gz: f935c54cea96917cd746ccc4ee8495f09fb8021b7006c0905a0441e6c0f53626
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3f39a496726d059966a84cb3fa6354c18336231c563f7b6b90d248512c3a87e54a3716960c72fa0a3213b49b63baf6538eda26d93cda135304d0edfa9e91fae9
|
|
7
|
+
data.tar.gz: a6b5e6c147516774096bbe598d6236d009e5648762139cf6926403b29b83d19a3fe989e224aeee8c503bf5c85b392ba0df2f8d2174d6a467011a5c57c56863d7
|
data/include/rice/rice.hpp
CHANGED
|
@@ -5707,8 +5707,8 @@ namespace Rice
|
|
|
5707
5707
|
* plain function or lambda, the first argument must be SELF - ie,
|
|
5708
5708
|
* the current object. If it is specified as a VALUE, then
|
|
5709
5709
|
* the current Ruby object is passed. If it is specified as a C++ class,
|
|
5710
|
-
* then the C++
|
|
5711
|
-
* SELF argument see
|
|
5710
|
+
* then the C++ object is passed. If you don't want to include the
|
|
5711
|
+
* SELF argument see define_function.
|
|
5712
5712
|
* Rice will automatically convert method method from Ruby to C++ and
|
|
5713
5713
|
* then convert the return value from C++ to Ruby.
|
|
5714
5714
|
* \param name the name of the method
|
|
@@ -5737,9 +5737,9 @@ namespace Rice
|
|
|
5737
5737
|
//! Define a singleton method.
|
|
5738
5738
|
/*! The method's implementation can be a static member function,
|
|
5739
5739
|
* plain function or lambda. In all cases the first argument
|
|
5740
|
-
* must be SELF - ie,
|
|
5740
|
+
* must be SELF - ie, the current object. If it is specified as a VALUE, then
|
|
5741
5741
|
* the current Ruby object is passed. If it is specified as a C++ class,
|
|
5742
|
-
* then the C++
|
|
5742
|
+
* then the C++ object is passed. If you don't want to include the
|
|
5743
5743
|
* SELF argument see define_singleton_function.
|
|
5744
5744
|
* Rice will automatically convert method method from Ruby to C++ and
|
|
5745
5745
|
* then convert the return value from C++ to Ruby.
|
data/lib/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rice
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Paul Brannan
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2022-01-15 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: bundler
|
|
@@ -213,14 +213,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
213
213
|
requirements:
|
|
214
214
|
- - ">="
|
|
215
215
|
- !ruby/object:Gem::Version
|
|
216
|
-
version: '2.
|
|
216
|
+
version: '2.5'
|
|
217
217
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
218
218
|
requirements:
|
|
219
219
|
- - ">="
|
|
220
220
|
- !ruby/object:Gem::Version
|
|
221
221
|
version: '0'
|
|
222
222
|
requirements: []
|
|
223
|
-
rubygems_version: 3.2.
|
|
223
|
+
rubygems_version: 3.2.32
|
|
224
224
|
signing_key:
|
|
225
225
|
specification_version: 4
|
|
226
226
|
summary: Ruby Interface for C++ Extensions
|