rice 4.0.2 → 4.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fd2dbd87d7e696f34f2ab356874da9111c29b07978e995610a8beedb748ed2b2
4
- data.tar.gz: 520234302f9c41a4f1f05e0ea9a2f0248d027e2b50cd23ad6be4c385a50e298d
3
+ metadata.gz: 523fdd81cea4f2ee375b9865c8f3a097515c94341b25d1b0a9c7411720b9586f
4
+ data.tar.gz: f935c54cea96917cd746ccc4ee8495f09fb8021b7006c0905a0441e6c0f53626
5
5
  SHA512:
6
- metadata.gz: 4143949294a979297f879f6e2392f8ef20a04a0c03e33ed177de7f43d6b81adb0807af4467665a83428dbc668104bd352492834edc658684a5a7eb93f3b6bdef
7
- data.tar.gz: 35bb595dc8ec7d34ea290739606ab0176fae71f8b80d038e09655b10acab7f30daafd200d7af224569fd8d2b22709bc8658ddf3d1f30175231f0cfbd29cbc5a7
6
+ metadata.gz: 3f39a496726d059966a84cb3fa6354c18336231c563f7b6b90d248512c3a87e54a3716960c72fa0a3213b49b63baf6538eda26d93cda135304d0edfa9e91fae9
7
+ data.tar.gz: a6b5e6c147516774096bbe598d6236d009e5648762139cf6926403b29b83d19a3fe989e224aeee8c503bf5c85b392ba0df2f8d2174d6a467011a5c57c56863d7
@@ -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++ oject is passed. If you don't want to include the
5711
- * SELF argument see define_fuction.
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, he current object. If it is specified as a VALUE, then
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++ oject is passed. If you don't want to include the
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
@@ -1,3 +1,3 @@
1
1
  module Rice
2
- VERSION = "4.0.2"
2
+ VERSION = "4.0.3"
3
3
  end
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.2
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: 2021-05-17 00:00:00.000000000 Z
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.6'
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.3
223
+ rubygems_version: 3.2.32
224
224
  signing_key:
225
225
  specification_version: 4
226
226
  summary: Ruby Interface for C++ Extensions