supplement 2.25 → 2.26

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: 87253970f8149f1f091b4419997728d0317f6d847f95842a21dab6faf352ce75
4
- data.tar.gz: 730dbbbb7d53ac21435f34f9639be86245b3b62c806df69902a3548cd7492c8a
3
+ metadata.gz: 6a901ea1ffc61c2fc508aa25ecded2cdf4668547f9dccdfa9b8cfbe7e8aea505
4
+ data.tar.gz: b156a06a97b495b524550fc903de39a7db9f007451aa6102ac50e66391a304a5
5
5
  SHA512:
6
- metadata.gz: deafd239c000947882607c24b2088ecd82e55d2033477646fefa7ecedaa4f0f844813a894dc9ef3846b3c4c30eca74043972c47ba7d61a414a4e0dfd0e33ddd0
7
- data.tar.gz: a0cb32771d5ad142b05c645896fd05e68148e34ffd05d04d3bbac1f1db27bead3c39af3b0a65dd929a353e0e09643c7996a0e94c0818a88a5a1949ac78cfeac4
6
+ metadata.gz: 197c7244e880680e7e9623236dc2e81bfa76f54df5708c75a73d9fd839f40bcd835b2a3e99e89e99ffbffa54386ef0c09de421e6b761937860dd8047119f58c9
7
+ data.tar.gz: a73e89d0257c48cd54916446ec507ed431e01451bb52cc29d6b50e65517b18b02c8aebd351d924c8f95588d15af8cc3e1ca4349504540150f40a922cb0a1c1f0
data/README CHANGED
@@ -1,4 +1,4 @@
1
- = supplement 2.25 -- Useful Ruby enhancements
1
+ = supplement 2.26 -- Useful Ruby enhancements
2
2
 
3
3
 
4
4
  Some simple Ruby extensions.
data/lib/mkrf_conf CHANGED
@@ -30,5 +30,6 @@ Autorake.configure {
30
30
 
31
31
  have_function "cbrt"
32
32
 
33
+ have_header "sys/vfs.h"
33
34
  }
34
35
 
@@ -5,12 +5,14 @@
5
5
  #include "filesys.h"
6
6
 
7
7
  #include <stdlib.h>
8
- #ifdef __FSID_T_TYPE
8
+ #ifdef HAVE_HEADER_SYS_VFS_H
9
9
  /* Linux */
10
10
  #include <sys/vfs.h>
11
+ #define FSID_val __val
11
12
  #else
12
13
  #include <sys/param.h>
13
14
  #include <sys/mount.h>
15
+ #define FSID_val val
14
16
  #endif
15
17
 
16
18
 
@@ -209,13 +211,6 @@ rb_fsstat_ffree( VALUE self)
209
211
  * Filesystem id; array of 2 integers.
210
212
  */
211
213
 
212
- #ifdef __FSID_T_TYPE
213
- /* Linux */
214
- #define FSID_val __val
215
- #else
216
- #define FSID_val val
217
- #endif
218
-
219
214
  VALUE
220
215
  rb_fsstat_fsid( VALUE self)
221
216
  {
data/lib/supplement.c CHANGED
@@ -622,78 +622,6 @@ rb_str_axe( int argc, VALUE *argv, VALUE str)
622
622
  * Document-class: Numeric
623
623
  */
624
624
 
625
- /*
626
- * call-seq:
627
- * pos? -> true or false
628
- *
629
- * Check whether +num+ is positive.
630
- *
631
- */
632
-
633
- VALUE
634
- rb_num_pos_p( VALUE num)
635
- {
636
- VALUE r = Qfalse;
637
-
638
- switch (TYPE( num)) {
639
- case T_FIXNUM:
640
- if (NUM2LONG( num) > 0)
641
- r = Qtrue;
642
- break;
643
-
644
- case T_BIGNUM:
645
- if (RBIGNUM_SIGN( num)) /* 0 is not a Bignum. */
646
- r = Qtrue;
647
- break;
648
-
649
- case T_FLOAT:
650
- if (RFLOAT_VALUE( num) > 0.0)
651
- r = Qtrue;
652
- break;
653
-
654
- default:
655
- return rb_num_neg_p( rb_funcall( INT2FIX( 0), id_cmp, 1, num));
656
- break;
657
- }
658
- return r;
659
- }
660
-
661
- /*
662
- * call-seq:
663
- * neg? -> true or false
664
- *
665
- * Check whether +num+ is negative.
666
- *
667
- */
668
-
669
- VALUE
670
- rb_num_neg_p( VALUE num)
671
- {
672
- VALUE r = Qfalse;
673
-
674
- switch (TYPE( num)) {
675
- case T_FIXNUM:
676
- if (NUM2LONG( num) < 0)
677
- r = Qtrue;
678
- break;
679
-
680
- case T_BIGNUM:
681
- if (!RBIGNUM_SIGN( num)) /* 0 is not a Bignum. */
682
- r = Qtrue;
683
- break;
684
-
685
- case T_FLOAT:
686
- if (RFLOAT_VALUE( num) < 0.0)
687
- r = Qtrue;
688
- break;
689
-
690
- default:
691
- return rb_num_neg_p( rb_funcall( num, id_cmp, 1, INT2FIX( 0)));
692
- break;
693
- }
694
- return r;
695
- }
696
-
697
625
  /*
698
626
  * call-seq:
699
627
  * grammatical sing, plu -> str
@@ -1500,8 +1428,6 @@ void Init_supplement( void)
1500
1428
  #endif
1501
1429
  rb_define_method( rb_cString, "axe", rb_str_axe, -1);
1502
1430
 
1503
- rb_define_method( rb_cNumeric, "pos?", rb_num_pos_p, 0);
1504
- rb_define_method( rb_cNumeric, "neg?", rb_num_neg_p, 0);
1505
1431
  rb_define_method( rb_cNumeric, "grammatical", rb_num_grammatical, 2);
1506
1432
  rb_define_method( rb_cNumeric, "sqrt", rb_num_sqrt, 0);
1507
1433
  rb_define_method( rb_cNumeric, "cbrt", rb_num_cbrt, 0);
data/lib/supplement.h CHANGED
@@ -43,8 +43,6 @@ extern VALUE rb_str_ord( VALUE);
43
43
  #endif
44
44
  extern VALUE rb_str_axe( int, VALUE *, VALUE);
45
45
 
46
- extern VALUE rb_num_pos_p( VALUE);
47
- extern VALUE rb_num_neg_p( VALUE);
48
46
  extern VALUE rb_num_grammatical( VALUE, VALUE, VALUE);
49
47
  extern VALUE rb_num_sqrt( VALUE);
50
48
  extern VALUE rb_num_cbrt( VALUE);
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: supplement
3
3
  version: !ruby/object:Gem::Version
4
- version: '2.25'
4
+ version: '2.26'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bertram Scharpf
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-13 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: rake
@@ -45,8 +45,8 @@ executables: []
45
45
  extensions:
46
46
  - lib/mkrf_conf
47
47
  extra_rdoc_files:
48
- - README
49
48
  - LICENSE
49
+ - README
50
50
  files:
51
51
  - LICENSE
52
52
  - README
@@ -91,7 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
91
91
  version: '0'
92
92
  requirements:
93
93
  - Ruby and the autorake gem
94
- rubygems_version: 3.6.4
94
+ rubygems_version: 3.6.7
95
95
  specification_version: 4
96
96
  summary: Simple Ruby extensions
97
97
  test_files: []