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.
- checksums.yaml +4 -4
- data/README +2 -1
- data/lib/supplement.c +46 -0
- data/lib/supplement.h +2 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e3d7ee6d3e8eb25677cac8471ba79cbf665610dcb9b061b0e79e1ae138b64157
|
4
|
+
data.tar.gz: 5f3753613e05e2878fa31aa81b8bb007e0fe399db578f1ece73ae76744abfba6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28b038bda87536826cab7e3a9451ab73696e8958b687ef25b90a2c3b3a260464f58fecf1e39d9944b60aaa61c12363d3885ef12fe917ee611648418e8a102033
|
7
|
+
data.tar.gz: b91a88ae34b04323ff296bc0c4fa303f729b053f0eb726ecd1d4fabc7c3d59c05dbda042567bfe3e0449d368dbaec80d676f8aaacd2b64b9b471a290a8158ddf
|
data/README
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
= supplement 2.
|
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.
|
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-
|
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.
|
94
|
+
rubygems_version: 3.6.4
|
95
95
|
specification_version: 4
|
96
96
|
summary: Simple Ruby extensions
|
97
97
|
test_files: []
|