supplement 2.4 → 2.5
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 +1 -1
- data/lib/mkrf_conf +13 -10
- data/lib/process.c +1 -1
- data/lib/supplement.c +14 -6
- data/lib/supplement.h +1 -1
- 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: ce560e2f7352a6d0f2d273b3b66c8cb4c3781cf1ff54883d52a8ae78d0b1bea4
|
4
|
+
data.tar.gz: a58fc3dff8e03f90d995b548e30d7a45dbf1f1ba440b59ecd719b1d8cbb10cb3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0382adec096f4dd2d54b2b71abb9d54dc2e008e6d742ba66f49348e3b0c0a41cf540f08024bf536af75aa8a18e75285ff444630198a6d6c49264e1e9b8aa4253'
|
7
|
+
data.tar.gz: 81e0844875bcabe889d10cb1bbb3c2baadc67c0de8af5db7a14c0ecb0094245e5a545ed6d2b0fe2ce06ead9599ab7b56b0adbb939ee036162e1e213dc8acec97
|
data/README
CHANGED
data/lib/mkrf_conf
CHANGED
@@ -10,16 +10,19 @@ Autorake.configure {
|
|
10
10
|
|
11
11
|
extending_ruby
|
12
12
|
|
13
|
-
if RUBY_VERSION < "
|
14
|
-
enable :
|
15
|
-
if RUBY_VERSION < "1.9" then
|
16
|
-
enable :
|
17
|
-
|
18
|
-
|
19
|
-
enable :
|
20
|
-
|
21
|
-
|
22
|
-
|
13
|
+
if RUBY_VERSION < "2.5" then
|
14
|
+
enable :dir_children
|
15
|
+
if RUBY_VERSION < "1.9.2" then
|
16
|
+
enable :array_select_bang
|
17
|
+
if RUBY_VERSION < "1.9" then
|
18
|
+
enable :string_ord
|
19
|
+
enable :string_clear
|
20
|
+
if RUBY_VERSION < "1.8.7" then
|
21
|
+
enable :array_index_with_block
|
22
|
+
enable :kernel_tap
|
23
|
+
enable :string_start_with
|
24
|
+
enable :thread_exclusive
|
25
|
+
end
|
23
26
|
end
|
24
27
|
end
|
25
28
|
end
|
data/lib/process.c
CHANGED
data/lib/supplement.c
CHANGED
@@ -72,14 +72,15 @@ static ID id_index;
|
|
72
72
|
|
73
73
|
/*
|
74
74
|
* call-seq:
|
75
|
-
* new_string
|
75
|
+
* new_string -> str
|
76
|
+
* new_string { |str| ... } -> str
|
76
77
|
*
|
77
78
|
* Returns another string that may be modified without touching the original
|
78
79
|
* object. This means +dup+ for a string and +to_s+ for any other object.
|
79
80
|
*
|
80
81
|
* If a block is given, that may modify a created string (built from a
|
81
82
|
* non-string object). For a dup'ed string object the block will not be
|
82
|
-
* called.
|
83
|
+
* called (See +String#new_string+).
|
83
84
|
*/
|
84
85
|
|
85
86
|
VALUE
|
@@ -1229,7 +1230,7 @@ rb_file_s_umask( int argc, VALUE *argv)
|
|
1229
1230
|
{
|
1230
1231
|
int omask = 0;
|
1231
1232
|
|
1232
|
-
rb_secure(
|
1233
|
+
rb_secure( 1);
|
1233
1234
|
switch (argc) {
|
1234
1235
|
case 0:
|
1235
1236
|
omask = umask( 0777);
|
@@ -1313,16 +1314,18 @@ rb_dir_s_mkdir_bang( int argc, VALUE *argv)
|
|
1313
1314
|
}
|
1314
1315
|
|
1315
1316
|
|
1317
|
+
#ifdef FEATURE_DIR_CHILDREN
|
1318
|
+
|
1316
1319
|
/*
|
1317
1320
|
* call-seq:
|
1318
|
-
*
|
1321
|
+
* children() -> ary
|
1319
1322
|
*
|
1320
1323
|
* Entries without <code>"."</code> and <code>".."</code>.
|
1321
1324
|
*
|
1322
1325
|
*/
|
1323
1326
|
|
1324
1327
|
VALUE
|
1325
|
-
|
1328
|
+
rb_dir_children( VALUE self)
|
1326
1329
|
{
|
1327
1330
|
VALUE e;
|
1328
1331
|
|
@@ -1332,6 +1335,8 @@ rb_dir_entries_bang( VALUE self)
|
|
1332
1335
|
return e;
|
1333
1336
|
}
|
1334
1337
|
|
1338
|
+
#endif
|
1339
|
+
|
1335
1340
|
|
1336
1341
|
|
1337
1342
|
/*
|
@@ -1550,7 +1555,10 @@ void Init_supplement( void)
|
|
1550
1555
|
|
1551
1556
|
rb_define_singleton_method( rb_cDir, "current", rb_dir_s_current, 0);
|
1552
1557
|
rb_define_singleton_method( rb_cDir, "mkdir!", rb_dir_s_mkdir_bang, -1);
|
1553
|
-
|
1558
|
+
#ifdef FEATURE_DIR_CHILDREN
|
1559
|
+
rb_define_method( rb_cDir, "children", rb_dir_children, 0);
|
1560
|
+
#endif
|
1561
|
+
rb_define_alias( rb_cDir, "entries!", "children");
|
1554
1562
|
|
1555
1563
|
rb_define_method( rb_cMatch, "begin", rb_match_begin, -1);
|
1556
1564
|
rb_define_method( rb_cMatch, "end", rb_match_end, -1);
|
data/lib/supplement.h
CHANGED
@@ -67,7 +67,7 @@ extern VALUE rb_file_size( VALUE);
|
|
67
67
|
extern VALUE rb_file_s_umask( int, VALUE *);
|
68
68
|
extern VALUE rb_dir_s_current( VALUE);
|
69
69
|
extern VALUE rb_dir_s_mkdir_bang( int, VALUE *);
|
70
|
-
extern VALUE
|
70
|
+
extern VALUE rb_dir_children( VALUE);
|
71
71
|
|
72
72
|
extern VALUE rb_match_begin( int, VALUE *, VALUE);
|
73
73
|
extern VALUE rb_match_end( int, VALUE *, VALUE);
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: supplement
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '2.
|
4
|
+
version: '2.5'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bertram Scharpf
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-12-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: autorake
|
@@ -78,7 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
78
78
|
version: '0'
|
79
79
|
requirements:
|
80
80
|
- Ruby and the autorake gem
|
81
|
-
rubygems_version: 3.0.
|
81
|
+
rubygems_version: 3.0.6
|
82
82
|
signing_key:
|
83
83
|
specification_version: 4
|
84
84
|
summary: Simple Ruby extensions
|