supplement 2.22 → 2.23

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README +2 -1
  3. data/lib/supplement.c +46 -0
  4. data/lib/supplement.h +2 -0
  5. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cfe383724f7aaa07dc2be7524d3ab6e11908ede513e133251b01989572343e59
4
- data.tar.gz: 64121897e3f8388666664d0911b74ae18a4b8c378b6c38737edc0414e5262629
3
+ metadata.gz: e3d7ee6d3e8eb25677cac8471ba79cbf665610dcb9b061b0e79e1ae138b64157
4
+ data.tar.gz: 5f3753613e05e2878fa31aa81b8bb007e0fe399db578f1ece73ae76744abfba6
5
5
  SHA512:
6
- metadata.gz: '0549d67c614aad498ad70160933d2122290b864013ff73b564a57b8f80a8cceaa86c9c57dd222641be738dbf6232e0dccb78b9b3610888055fdf5706bf678f8a'
7
- data.tar.gz: eac0f15c6799f7e096abea90146351d33c905e85d78fe0e293a83a1ce611f96b10ba5bf6bc84c3f8271ac1822a8b702794066abe9c8210a5b3dddb0a88c94849
6
+ metadata.gz: 28b038bda87536826cab7e3a9451ab73696e8958b687ef25b90a2c3b3a260464f58fecf1e39d9944b60aaa61c12363d3885ef12fe917ee611648418e8a102033
7
+ data.tar.gz: b91a88ae34b04323ff296bc0c4fa303f729b053f0eb726ecd1d4fabc7c3d59c05dbda042567bfe3e0449d368dbaec80d676f8aaacd2b64b9b471a290a8158ddf
data/README CHANGED
@@ -1,4 +1,4 @@
1
- = supplement 2.22 -- Useful Ruby enhancements
1
+ = supplement 2.23 -- Useful Ruby enhancements
2
2
 
3
3
 
4
4
  Some simple Ruby extensions.
@@ -55,6 +55,7 @@ Now here it is where I can just point to.
55
55
  * String#start_with?
56
56
  * String#end_with?
57
57
  * Array#notempty?
58
+ * Array#first=/last=
58
59
  * Hash#notempty?
59
60
  * Struct.[]
60
61
  * Integer.roman
data/lib/supplement.c CHANGED
@@ -814,6 +814,50 @@ rb_ary_notempty_p( VALUE ary)
814
814
  return RARRAY_LEN( ary) == 0 ? Qnil : ary;
815
815
  }
816
816
 
817
+ /*
818
+ * call-seq:
819
+ * first = obj -> obj
820
+ *
821
+ * Replace the first element. Equivalent to <code>ary[0]=</code>.
822
+ *
823
+ * a = [ -1, 39, 56]
824
+ * a.first = 42
825
+ * a #=> [42, 39, 56]
826
+ * a.unshift 266
827
+ * a.first /= 14
828
+ * a #=> [19, 42, 39, 56]
829
+ */
830
+
831
+ VALUE
832
+ rb_ary_first_set( VALUE ary, VALUE val)
833
+ {
834
+ rb_ary_modify(ary);
835
+ RARRAY_ASET(ary, 0, val);
836
+ return val;
837
+ }
838
+
839
+ /*
840
+ * call-seq:
841
+ * last = obj -> obj
842
+ *
843
+ * Replace the last element. Equivalent to <code>ary[-1]=</code>.
844
+ *
845
+ * a = [ 42, 39, -1]
846
+ * a.last = 42
847
+ * a #=> [42, 39, 42]
848
+ * a.push 266
849
+ * a.last /= 14
850
+ * a #=> [42, 39, 42, 19]
851
+ */
852
+
853
+ VALUE
854
+ rb_ary_last_set( VALUE ary, VALUE val)
855
+ {
856
+ rb_ary_modify(ary);
857
+ RARRAY_ASET(ary, RARRAY_LEN(ary)-1, val);
858
+ return val;
859
+ }
860
+
817
861
 
818
862
  /*
819
863
  * call-seq:
@@ -1449,6 +1493,8 @@ void Init_supplement( void)
1449
1493
  rb_define_method( rb_cNumeric, "cbrt", rb_num_cbrt, 0);
1450
1494
 
1451
1495
  rb_define_method( rb_cArray, "notempty?", rb_ary_notempty_p, 0);
1496
+ rb_define_method( rb_cArray, "first=", rb_ary_first_set, 1);
1497
+ rb_define_method( rb_cArray, "last=", rb_ary_last_set, 1);
1452
1498
  rb_define_method( rb_cArray, "indexes", rb_ary_indexes, 0);
1453
1499
  rb_define_alias( rb_cArray, "keys", "indexes");
1454
1500
  rb_define_method( rb_cArray, "range", rb_ary_range, 0);
data/lib/supplement.h CHANGED
@@ -50,6 +50,8 @@ extern VALUE rb_num_sqrt( VALUE);
50
50
  extern VALUE rb_num_cbrt( VALUE);
51
51
 
52
52
  extern VALUE rb_ary_notempty_p( VALUE);
53
+ extern VALUE rb_ary_first_set( VALUE, VALUE);
54
+ extern VALUE rb_ary_last_set( VALUE, VALUE);
53
55
  extern VALUE rb_ary_indexes( VALUE);
54
56
  extern VALUE rb_ary_range( VALUE);
55
57
  extern VALUE rb_ary_pick( int, VALUE *, 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.22'
4
+ version: '2.23'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bertram Scharpf
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-04 00:00:00.000000000 Z
10
+ date: 2025-03-10 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: rake
@@ -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.2
94
+ rubygems_version: 3.6.4
95
95
  specification_version: 4
96
96
  summary: Simple Ruby extensions
97
97
  test_files: []