etc 1.3.0 → 1.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ChangeLog +22 -0
- data/ext/etc/etc.c +63 -57
- data/ext/etc/extconf.rb +1 -0
- data/logs/ChangeLog-1.0.0 +65 -0
- data/logs/ChangeLog-1.0.1 +71 -0
- data/logs/ChangeLog-1.1.0 +143 -0
- data/logs/ChangeLog-1.2.0 +124 -0
- data/logs/ChangeLog-1.3.0 +83 -0
- data/logs/ChangeLog-1.3.1 +145 -0
- data/logs/ChangeLog-1.4.0 +73 -0
- data/logs/ChangeLog-1.4.1 +97 -0
- metadata +34 -63
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0050c9583f69123bae1291a4537d9c4190ed8db043312d65fca4756196a3d3aa
|
4
|
+
data.tar.gz: ad8fbd7390bae77af9f8fea34c8ce5fba1e012aa65c4c62c31f6aeae58d0c25c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a104960635bcac115c6890fed938637568e0b51e60a4160405fa1b614924363c973c7a3561fa0c8c69310b9197dd35ca27ce1f8c9484c74fca3cbf994fcffe0
|
7
|
+
data.tar.gz: 6408aae9355a8950a0e7ad76cc89c765c829d78e62771f6a375a4b79c15df11dd6df0c48842e98aac787a4be197cb773a783590bff8ddf31498a4e5957756ffe
|
data/ChangeLog
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
-*- coding: utf-8 -*-
|
2
|
+
|
3
|
+
commit 5cac138538ea4ce0176aa035a97fca78e913d65d
|
4
|
+
Author: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
5
|
+
AuthorDate: 2022-12-09 14:57:29 +0900
|
6
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
7
|
+
CommitDate: 2022-12-09 14:57:29 +0900
|
8
|
+
|
9
|
+
Bump version to 1.4.2
|
10
|
+
|
11
|
+
commit 61b3dc486bbfdb662834a7088150050da57a61c9
|
12
|
+
Author: 卜部昌平 <shyouhei@ruby-lang.org>
|
13
|
+
AuthorDate: 2022-09-21 10:03:30 +0900
|
14
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
15
|
+
CommitDate: 2022-12-09 14:56:37 +0900
|
16
|
+
|
17
|
+
getenv: is in stdlib.h
|
18
|
+
|
19
|
+
getenv is a very basic function that has been in stdlib.h since
|
20
|
+
ISO/IEC 9899:1990. There is absolutely zero need for us to redeclare.
|
21
|
+
|
22
|
+
pty.c already includes stdlib.h out of the box so we need nothing.
|
data/ext/etc/etc.c
CHANGED
@@ -47,12 +47,16 @@ static VALUE sGroup;
|
|
47
47
|
#define HAVE_UNAME 1
|
48
48
|
#endif
|
49
49
|
|
50
|
-
#
|
51
|
-
|
50
|
+
#ifdef STDC_HEADERS
|
51
|
+
# include <stdlib.h>
|
52
|
+
#else
|
53
|
+
# ifdef HAVE_STDLIB_H
|
54
|
+
# include <stdlib.h>
|
55
|
+
# endif
|
52
56
|
#endif
|
53
57
|
char *getlogin();
|
54
58
|
|
55
|
-
#define RUBY_ETC_VERSION "1.
|
59
|
+
#define RUBY_ETC_VERSION "1.4.2"
|
56
60
|
|
57
61
|
#ifdef HAVE_RB_DEPRECATE_CONSTANT
|
58
62
|
void rb_deprecate_constant(VALUE mod, const char *name);
|
@@ -190,7 +194,8 @@ setup_passwd(struct passwd *pwd)
|
|
190
194
|
/* call-seq:
|
191
195
|
* getpwuid(uid) -> Passwd
|
192
196
|
*
|
193
|
-
* Returns the
|
197
|
+
* Returns the <tt>/etc/passwd</tt> information for the user with the given
|
198
|
+
* integer +uid+.
|
194
199
|
*
|
195
200
|
* The information is returned as a Passwd struct.
|
196
201
|
*
|
@@ -229,8 +234,8 @@ etc_getpwuid(int argc, VALUE *argv, VALUE obj)
|
|
229
234
|
/* call-seq:
|
230
235
|
* getpwnam(name) -> Passwd
|
231
236
|
*
|
232
|
-
* Returns the
|
233
|
-
* +name+.
|
237
|
+
* Returns the <tt>/etc/passwd</tt> information for the user with specified
|
238
|
+
* login +name+.
|
234
239
|
*
|
235
240
|
* The information is returned as a Passwd struct.
|
236
241
|
*
|
@@ -295,7 +300,7 @@ each_passwd(void)
|
|
295
300
|
* Etc.passwd -> Passwd
|
296
301
|
*
|
297
302
|
* Provides a convenient Ruby iterator which executes a block for each entry
|
298
|
-
* in the
|
303
|
+
* in the <tt>/etc/passwd</tt> file.
|
299
304
|
*
|
300
305
|
* The code block is passed an Passwd struct.
|
301
306
|
*
|
@@ -330,13 +335,14 @@ etc_passwd(VALUE obj)
|
|
330
335
|
* Etc::Passwd.each { |struct| block } -> Passwd
|
331
336
|
* Etc::Passwd.each -> Enumerator
|
332
337
|
*
|
333
|
-
* Iterates for each entry in the
|
338
|
+
* Iterates for each entry in the <tt>/etc/passwd</tt> file if a block is
|
339
|
+
* given.
|
334
340
|
*
|
335
341
|
* If no block is given, returns the Enumerator.
|
336
342
|
*
|
337
343
|
* The code block is passed an Passwd struct.
|
338
344
|
*
|
339
|
-
* See
|
345
|
+
* See Etc.getpwent above for details.
|
340
346
|
*
|
341
347
|
* Example:
|
342
348
|
*
|
@@ -360,8 +366,8 @@ etc_each_passwd(VALUE obj)
|
|
360
366
|
return obj;
|
361
367
|
}
|
362
368
|
|
363
|
-
/* Resets the process of reading the
|
364
|
-
* to ::getpwent will return the first entry again.
|
369
|
+
/* Resets the process of reading the <tt>/etc/passwd</tt> file, so that the
|
370
|
+
* next call to ::getpwent will return the first entry again.
|
365
371
|
*/
|
366
372
|
static VALUE
|
367
373
|
etc_setpwent(VALUE obj)
|
@@ -372,8 +378,8 @@ etc_setpwent(VALUE obj)
|
|
372
378
|
return Qnil;
|
373
379
|
}
|
374
380
|
|
375
|
-
/* Ends the process of scanning through the
|
376
|
-
* ::getpwent, and closes the file.
|
381
|
+
/* Ends the process of scanning through the <tt>/etc/passwd</tt> file begun
|
382
|
+
* with ::getpwent, and closes the file.
|
377
383
|
*/
|
378
384
|
static VALUE
|
379
385
|
etc_endpwent(VALUE obj)
|
@@ -384,7 +390,7 @@ etc_endpwent(VALUE obj)
|
|
384
390
|
return Qnil;
|
385
391
|
}
|
386
392
|
|
387
|
-
/* Returns an entry from the
|
393
|
+
/* Returns an entry from the <tt>/etc/passwd</tt> file.
|
388
394
|
*
|
389
395
|
* The first time it is called it opens the file and returns the first entry;
|
390
396
|
* each successive call returns the next entry, or +nil+ if the end of the file
|
@@ -435,7 +441,7 @@ setup_group(struct group *grp)
|
|
435
441
|
* getgrgid(group_id) -> Group
|
436
442
|
*
|
437
443
|
* Returns information about the group with specified integer +group_id+,
|
438
|
-
* as found in
|
444
|
+
* as found in <tt>/etc/group</tt>.
|
439
445
|
*
|
440
446
|
* The information is returned as a Group struct.
|
441
447
|
*
|
@@ -473,7 +479,7 @@ etc_getgrgid(int argc, VALUE *argv, VALUE obj)
|
|
473
479
|
* getgrnam(name) -> Group
|
474
480
|
*
|
475
481
|
* Returns information about the group with specified +name+, as found in
|
476
|
-
*
|
482
|
+
* <tt>/etc/group</tt>.
|
477
483
|
*
|
478
484
|
* The information is returned as a Group struct.
|
479
485
|
*
|
@@ -536,7 +542,7 @@ each_group(void)
|
|
536
542
|
#endif
|
537
543
|
|
538
544
|
/* Provides a convenient Ruby iterator which executes a block for each entry
|
539
|
-
* in the
|
545
|
+
* in the <tt>/etc/group</tt> file.
|
540
546
|
*
|
541
547
|
* The code block is passed an Group struct.
|
542
548
|
*
|
@@ -572,7 +578,8 @@ etc_group(VALUE obj)
|
|
572
578
|
* Etc::Group.each { |group| block } -> obj
|
573
579
|
* Etc::Group.each -> Enumerator
|
574
580
|
*
|
575
|
-
* Iterates for each entry in the
|
581
|
+
* Iterates for each entry in the <tt>/etc/group</tt> file if a block is
|
582
|
+
* given.
|
576
583
|
*
|
577
584
|
* If no block is given, returns the Enumerator.
|
578
585
|
*
|
@@ -599,8 +606,8 @@ etc_each_group(VALUE obj)
|
|
599
606
|
}
|
600
607
|
#endif
|
601
608
|
|
602
|
-
/* Resets the process of reading the
|
603
|
-
* to ::getgrent will return the first entry again.
|
609
|
+
/* Resets the process of reading the <tt>/etc/group</tt> file, so that the
|
610
|
+
* next call to ::getgrent will return the first entry again.
|
604
611
|
*/
|
605
612
|
static VALUE
|
606
613
|
etc_setgrent(VALUE obj)
|
@@ -611,8 +618,8 @@ etc_setgrent(VALUE obj)
|
|
611
618
|
return Qnil;
|
612
619
|
}
|
613
620
|
|
614
|
-
/* Ends the process of scanning through the
|
615
|
-
* ::getgrent, and closes the file.
|
621
|
+
/* Ends the process of scanning through the <tt>/etc/group</tt> file begun
|
622
|
+
* by ::getgrent, and closes the file.
|
616
623
|
*/
|
617
624
|
static VALUE
|
618
625
|
etc_endgrent(VALUE obj)
|
@@ -623,7 +630,7 @@ etc_endgrent(VALUE obj)
|
|
623
630
|
return Qnil;
|
624
631
|
}
|
625
632
|
|
626
|
-
/* Returns an entry from the
|
633
|
+
/* Returns an entry from the <tt>/etc/group</tt> file.
|
627
634
|
*
|
628
635
|
* The first time it is called it opens the file and returns the first entry;
|
629
636
|
* each successive call returns the next entry, or +nil+ if the end of the file
|
@@ -657,9 +664,11 @@ VALUE rb_w32_conv_from_wchar(const WCHAR *wstr, rb_encoding *enc);
|
|
657
664
|
/*
|
658
665
|
* Returns system configuration directory.
|
659
666
|
*
|
660
|
-
* This is typically "/etc"
|
661
|
-
* compiled. For example, if Ruby is built and installed in
|
662
|
-
* returns "/usr/local/etc" on other
|
667
|
+
* This is typically <code>"/etc"</code>, but is modified by the prefix used
|
668
|
+
* when Ruby was compiled. For example, if Ruby is built and installed in
|
669
|
+
* <tt>/usr/local</tt>, returns <code>"/usr/local/etc"</code> on other
|
670
|
+
* platforms than Windows.
|
671
|
+
*
|
663
672
|
* On Windows, this always returns the directory provided by the system.
|
664
673
|
*/
|
665
674
|
static VALUE
|
@@ -1067,11 +1076,12 @@ etc_nprocessors(VALUE obj)
|
|
1067
1076
|
|
1068
1077
|
/*
|
1069
1078
|
* The Etc module provides access to information typically stored in
|
1070
|
-
* files in the
|
1079
|
+
* files in the <tt>/etc</tt> directory on Unix systems.
|
1071
1080
|
*
|
1072
1081
|
* The information accessible consists of the information found in the
|
1073
|
-
*
|
1074
|
-
* temporary directory (
|
1082
|
+
* <tt>/etc/passwd</tt> and <tt>/etc/group</tt> files, plus information
|
1083
|
+
* about the system's temporary directory (<tt>/tmp</tt>) and configuration
|
1084
|
+
* directory (<tt>/etc</tt>).
|
1075
1085
|
*
|
1076
1086
|
* The Etc module provides a more reliable way to access information about
|
1077
1087
|
* the logged in user than environment variables such as +$USER+.
|
@@ -1096,9 +1106,9 @@ Init_etc(void)
|
|
1096
1106
|
{
|
1097
1107
|
VALUE mEtc;
|
1098
1108
|
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1109
|
+
#ifdef HAVE_RB_EXT_RACTOR_SAFE
|
1110
|
+
RB_EXT_RACTOR_SAFE(true);
|
1111
|
+
#endif
|
1102
1112
|
mEtc = rb_define_module("Etc");
|
1103
1113
|
rb_define_const(mEtc, "VERSION", rb_str_new_cstr(RUBY_ETC_VERSION));
|
1104
1114
|
init_constants(mEtc);
|
@@ -1158,16 +1168,18 @@ Init_etc(void)
|
|
1158
1168
|
#endif
|
1159
1169
|
NULL);
|
1160
1170
|
#if 0
|
1161
|
-
/*
|
1171
|
+
/*
|
1172
|
+
* Passwd is a placeholder Struct for user database on Unix systems.
|
1162
1173
|
*
|
1163
|
-
*
|
1174
|
+
* === The struct contains the following members
|
1164
1175
|
*
|
1165
1176
|
* name::
|
1166
1177
|
* contains the short login name of the user as a String.
|
1167
1178
|
* passwd::
|
1168
1179
|
* contains the encrypted password of the user as a String.
|
1169
|
-
* an 'x' is returned if shadow passwords are in
|
1170
|
-
*
|
1180
|
+
* an <code>'x'</code> is returned if shadow passwords are in
|
1181
|
+
* use. An <code>'*'</code> is returned if the user cannot
|
1182
|
+
* log in using a password.
|
1171
1183
|
* uid::
|
1172
1184
|
* contains the integer user ID (uid) of the user.
|
1173
1185
|
* gid::
|
@@ -1177,32 +1189,30 @@ Init_etc(void)
|
|
1177
1189
|
* shell::
|
1178
1190
|
* contains the path to the login shell of the user as a String.
|
1179
1191
|
*
|
1180
|
-
* === The following members below are
|
1192
|
+
* === The following members below are system-dependent
|
1181
1193
|
*
|
1182
1194
|
* gecos::
|
1183
1195
|
* contains a longer String description of the user, such as
|
1184
1196
|
* a full name. Some Unix systems provide structured information in the
|
1185
1197
|
* gecos field, but this is system-dependent.
|
1186
|
-
* must be compiled with +HAVE_STRUCT_PASSWD_PW_GECOS+
|
1187
1198
|
* change::
|
1188
|
-
* password change time(integer)
|
1199
|
+
* password change time(integer).
|
1189
1200
|
* quota::
|
1190
|
-
* quota value(integer)
|
1201
|
+
* quota value(integer).
|
1191
1202
|
* age::
|
1192
|
-
* password age(integer)
|
1203
|
+
* password age(integer).
|
1193
1204
|
* class::
|
1194
|
-
* user access class(string)
|
1205
|
+
* user access class(string).
|
1195
1206
|
* comment::
|
1196
|
-
* comment(string)
|
1207
|
+
* comment(string).
|
1197
1208
|
* expire::
|
1198
|
-
* account expiration time(integer)
|
1209
|
+
* account expiration time(integer).
|
1199
1210
|
*/
|
1200
|
-
|
1211
|
+
sPasswd = rb_define_class_under(mEtc, "Passwd", rb_cStruct);
|
1201
1212
|
#endif
|
1202
|
-
rb_define_const(rb_cStruct, "Passwd", sPasswd); /* deprecated name */
|
1203
|
-
rb_deprecate_constant(rb_cStruct, "Passwd");
|
1204
1213
|
rb_extend_object(sPasswd, rb_mEnumerable);
|
1205
1214
|
rb_define_singleton_method(sPasswd, "each", etc_each_passwd, 0);
|
1215
|
+
|
1206
1216
|
#ifdef HAVE_GETGRENT
|
1207
1217
|
sGroup = rb_struct_define_under(mEtc, "Group", "name",
|
1208
1218
|
#ifdef HAVE_STRUCT_GROUP_GR_PASSWD
|
@@ -1211,31 +1221,27 @@ Init_etc(void)
|
|
1211
1221
|
"gid", "mem", NULL);
|
1212
1222
|
|
1213
1223
|
#if 0
|
1214
|
-
/*
|
1215
|
-
*
|
1216
|
-
* Group is a Struct that is only available when compiled with +HAVE_GETGRENT+.
|
1224
|
+
/*
|
1225
|
+
* Group is a placeholder Struct for user group database on Unix systems.
|
1217
1226
|
*
|
1218
|
-
* The struct contains the following members
|
1227
|
+
* === The struct contains the following members
|
1219
1228
|
*
|
1220
1229
|
* name::
|
1221
1230
|
* contains the name of the group as a String.
|
1222
1231
|
* passwd::
|
1223
|
-
* contains the encrypted password as a String. An 'x' is
|
1232
|
+
* contains the encrypted password as a String. An <code>'x'</code> is
|
1224
1233
|
* returned if password access to the group is not available; an empty
|
1225
1234
|
* string is returned if no password is needed to obtain membership of
|
1226
1235
|
* the group.
|
1227
|
-
*
|
1228
|
-
* Must be compiled with +HAVE_STRUCT_GROUP_GR_PASSWD+.
|
1236
|
+
* This is system-dependent.
|
1229
1237
|
* gid::
|
1230
1238
|
* contains the group's numeric ID as an integer.
|
1231
1239
|
* mem::
|
1232
1240
|
* is an Array of Strings containing the short login names of the
|
1233
1241
|
* members of the group.
|
1234
1242
|
*/
|
1235
|
-
|
1243
|
+
sGroup = rb_define_class_under(mEtc, "Group", rb_cStruct);
|
1236
1244
|
#endif
|
1237
|
-
rb_define_const(rb_cStruct, "Group", sGroup); /* deprecated name */
|
1238
|
-
rb_deprecate_constant(rb_cStruct, "Group");
|
1239
1245
|
rb_extend_object(sGroup, rb_mEnumerable);
|
1240
1246
|
rb_define_singleton_method(sGroup, "each", etc_each_group, 0);
|
1241
1247
|
#endif
|
data/ext/etc/extconf.rb
CHANGED
@@ -47,6 +47,7 @@ if !File.exist?("#{srcdir}/depend")
|
|
47
47
|
%x[#{RbConfig.ruby} #{srcdir}/mkconstants.rb -o #{srcdir}/constdefs.h]
|
48
48
|
end
|
49
49
|
|
50
|
+
# TODO: remove when dropping 2.7 support, as exported since 3.0
|
50
51
|
have_func('rb_deprecate_constant(Qnil, "None")')
|
51
52
|
|
52
53
|
$distcleanfiles << "constdefs.h"
|
@@ -0,0 +1,65 @@
|
|
1
|
+
-*- coding: utf-8 -*-
|
2
|
+
|
3
|
+
commit 3402a9366fba4d2bf2f4ea20df16c95121876bc4
|
4
|
+
Author: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
5
|
+
AuthorDate: 2017-12-13 14:31:00 +0900
|
6
|
+
Commit: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
7
|
+
CommitDate: 2017-12-13 14:31:00 +0900
|
8
|
+
|
9
|
+
Bump release date
|
10
|
+
|
11
|
+
commit be7fadb654340282ff71a500a47f88a0b4c47a1d
|
12
|
+
Author: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
13
|
+
AuthorDate: 2017-12-13 14:30:42 +0900
|
14
|
+
Commit: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
15
|
+
CommitDate: 2017-12-13 14:30:42 +0900
|
16
|
+
|
17
|
+
Added badge of Travis
|
18
|
+
|
19
|
+
commit 97aca32b82f6cd8c309ae515e36d86c4d4822e4c
|
20
|
+
Author: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
21
|
+
AuthorDate: 2017-12-13 14:23:26 +0900
|
22
|
+
Commit: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
23
|
+
CommitDate: 2017-12-13 14:23:26 +0900
|
24
|
+
|
25
|
+
prepare to release 1.0.0
|
26
|
+
|
27
|
+
commit 744646073bcd4e7c5b65ae5921cf4c1d5697e35e
|
28
|
+
Author: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
29
|
+
AuthorDate: 2017-11-28 12:17:10 +0900
|
30
|
+
Commit: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
31
|
+
CommitDate: 2017-11-28 12:20:44 +0900
|
32
|
+
|
33
|
+
Pick commits from ruby core repository.
|
34
|
+
|
35
|
+
* https://github.com/ruby/ruby/commit/0f7fed9253
|
36
|
+
* https://github.com/ruby/ruby/commit/8fc8587e05
|
37
|
+
* https://github.com/ruby/ruby/commit/1333c0f0df
|
38
|
+
* https://github.com/ruby/ruby/commit/e4ff51b05a
|
39
|
+
* https://github.com/ruby/ruby/commit/1852b4a866
|
40
|
+
* https://github.com/ruby/ruby/commit/b5b2bd86f1
|
41
|
+
* https://github.com/ruby/ruby/commit/253fd5fe6b
|
42
|
+
|
43
|
+
commit 0e8f8547412d33a35752ef4272d78fc18cf3a5ed
|
44
|
+
Author: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
45
|
+
AuthorDate: 2017-10-20 16:51:22 +0900
|
46
|
+
Commit: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
47
|
+
CommitDate: 2017-10-20 16:51:22 +0900
|
48
|
+
|
49
|
+
Update README with rdoc of Etc module
|
50
|
+
|
51
|
+
commit 86a04b45feed2bc88d44399e127ed675d5d0f41c
|
52
|
+
Author: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
53
|
+
AuthorDate: 2017-09-13 14:32:17 +0900
|
54
|
+
Commit: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
55
|
+
CommitDate: 2017-09-13 14:32:17 +0900
|
56
|
+
|
57
|
+
make frozen
|
58
|
+
|
59
|
+
commit 91ce5d0039fe10d86b35a3c114fabb9a7ae86344
|
60
|
+
Author: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
61
|
+
AuthorDate: 2017-07-18 14:38:26 +0900
|
62
|
+
Commit: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
63
|
+
CommitDate: 2017-07-18 14:38:26 +0900
|
64
|
+
|
65
|
+
fixed wrong license name
|
@@ -0,0 +1,71 @@
|
|
1
|
+
-*- coding: utf-8 -*-
|
2
|
+
|
3
|
+
commit 041c4a0cc91ce9140cc41641f4a16016349ecf30
|
4
|
+
Author: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
5
|
+
AuthorDate: 2018-05-26 09:13:47 +0900
|
6
|
+
Commit: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
7
|
+
CommitDate: 2018-05-26 09:13:47 +0900
|
8
|
+
|
9
|
+
bump version to 1.0.1
|
10
|
+
|
11
|
+
commit 4a7571b310da6a40a337421412e2db6ad379d066
|
12
|
+
Author: k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>
|
13
|
+
AuthorDate: 2018-02-27 11:12:23 +0000
|
14
|
+
Commit: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
15
|
+
CommitDate: 2018-05-26 08:29:39 +0900
|
16
|
+
|
17
|
+
Refactor ERB version checking for keyword arguments
|
18
|
+
|
19
|
+
Improving code like r62590. See r62529 for details.
|
20
|
+
|
21
|
+
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62594 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
|
22
|
+
|
23
|
+
commit 5903c2ff093fc176a564053aa3b6a09e7ef7b5a3
|
24
|
+
Author: k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>
|
25
|
+
AuthorDate: 2018-02-22 13:28:25 +0000
|
26
|
+
Commit: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
27
|
+
CommitDate: 2018-05-26 08:29:15 +0900
|
28
|
+
|
29
|
+
erb.rb: deprecate safe_level of ERB.new
|
30
|
+
|
31
|
+
Also, as it's in the middle of the list of 4 arguments, 3rd and 4th arguments
|
32
|
+
(trim_mode, eoutvar) are changed to keyword arguments.
|
33
|
+
Old ways to specify arguments are deprecated and warned now.
|
34
|
+
|
35
|
+
bin/erb: deprecate -S option.
|
36
|
+
|
37
|
+
We'll remove all of deprecated ones at Ruby 2.7+.
|
38
|
+
|
39
|
+
enc/make_encmake.rb: stopped using deprecated interface
|
40
|
+
ext/etc/mkconstants.rb: ditto
|
41
|
+
ext/socket/mkconstants.rb: ditto
|
42
|
+
sample/ripper/ruby2html.rb: ditto
|
43
|
+
spec/ruby/library/erb/defmethod/def_erb_method_spec.rb: ditto
|
44
|
+
spec/ruby/library/erb/new_spec.rb: ditto
|
45
|
+
test/erb/test_erb.rb: ditto
|
46
|
+
test/erb/test_erb_command.rb: ditto
|
47
|
+
tool/generic_erb.rb: ditto
|
48
|
+
tool/ruby_vm/helpers/dumper.rb: ditto
|
49
|
+
tool/transcode-tblgen.rb: ditto
|
50
|
+
lib/rdoc/erbio.rb: ditto
|
51
|
+
lib/rdoc/generator/darkfish.rb: ditto
|
52
|
+
|
53
|
+
[Feature #14256]
|
54
|
+
|
55
|
+
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62529 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
|
56
|
+
|
57
|
+
commit 16aba3206fb5335638f40d0a3969bf93e73af64b
|
58
|
+
Author: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
59
|
+
AuthorDate: 2018-01-05 09:23:48 +0900
|
60
|
+
Commit: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
61
|
+
CommitDate: 2018-01-05 09:23:48 +0900
|
62
|
+
|
63
|
+
Fixed installation error with standalone gem.
|
64
|
+
|
65
|
+
commit 9aad154fa91cf257ce985be9719ab55cf4ffc884
|
66
|
+
Author: Olle Jonsson <olle.jonsson@gmail.com>
|
67
|
+
AuthorDate: 2017-12-25 16:21:36 +0100
|
68
|
+
Commit: GitHub <noreply@github.com>
|
69
|
+
CommitDate: 2017-12-25 16:21:36 +0100
|
70
|
+
|
71
|
+
README: ruby code fence [ci skip]
|
@@ -0,0 +1,143 @@
|
|
1
|
+
-*- coding: utf-8 -*-
|
2
|
+
|
3
|
+
commit 78987ce56a489cb7ee82595c8354469f712195ce
|
4
|
+
Author: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
5
|
+
AuthorDate: 2019-11-30 18:03:57 +0900
|
6
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
7
|
+
CommitDate: 2019-11-30 18:03:57 +0900
|
8
|
+
|
9
|
+
Bump version to 1.1.0
|
10
|
+
|
11
|
+
commit b6a02c1193c0bfb89b71fdfe3fe9b282e61465cd
|
12
|
+
Author: Jeremy Evans <code@jeremyevans.net>
|
13
|
+
AuthorDate: 2019-10-18 12:10:03 -0700
|
14
|
+
Commit: Jeremy Evans <code@jeremyevans.net>
|
15
|
+
CommitDate: 2019-10-30 13:49:52 -0700
|
16
|
+
|
17
|
+
Remove taint support
|
18
|
+
|
19
|
+
Ruby 2.7 deprecates taint and it no longer has an effect.
|
20
|
+
The lack of taint support should not cause a problem in
|
21
|
+
previous Ruby versions.
|
22
|
+
|
23
|
+
Still untaint the tmpdir object on Ruby <2.7, as returning
|
24
|
+
a tainted string there could cause problems.
|
25
|
+
|
26
|
+
commit 5157aeaa08b60561a036d7c8269a514430cdd16f
|
27
|
+
Author: 卜部昌平 <shyouhei@ruby-lang.org>
|
28
|
+
AuthorDate: 2019-08-28 17:48:48 +0900
|
29
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
30
|
+
CommitDate: 2019-10-26 06:55:50 +0900
|
31
|
+
|
32
|
+
drop-in type check for rb_define_module_function
|
33
|
+
|
34
|
+
We can check the function pointer passed to rb_define_module_function
|
35
|
+
like how we do so in rb_define_method. The difference is that this
|
36
|
+
changeset reveales lots of atiry mismatches.
|
37
|
+
|
38
|
+
commit 8c93da18680cd1421cb52cd9b15aeb2b593cdb02
|
39
|
+
Author: 卜部昌平 <shyouhei@ruby-lang.org>
|
40
|
+
AuthorDate: 2019-08-26 15:20:15 +0900
|
41
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
42
|
+
CommitDate: 2019-10-26 06:55:33 +0900
|
43
|
+
|
44
|
+
rb_ensure now free from ANYARGS
|
45
|
+
|
46
|
+
After 5e86b005c0f2ef30df2f9906c7e2f3abefe286a2, I now think ANYARGS is
|
47
|
+
dangerous and should be extinct. This commit deletes ANYARGS from
|
48
|
+
rb_ensure, which also revealed many arity / type mismatches.
|
49
|
+
|
50
|
+
commit 941b2e47a5511bfcb306fe24c021e5cf2b5f8eed
|
51
|
+
Author: hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>
|
52
|
+
AuthorDate: 2018-10-20 10:30:42 +0000
|
53
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
54
|
+
CommitDate: 2019-10-26 06:55:15 +0900
|
55
|
+
|
56
|
+
Retry r65211.
|
57
|
+
|
58
|
+
* Maybe, RbConfig.ruby only provides after Ruby installation.
|
59
|
+
|
60
|
+
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65224 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
|
61
|
+
|
62
|
+
commit b344460f8fc13cb3c71780e997582df2431bccfb
|
63
|
+
Author: Samuel Williams <samuel.williams@oriontransfer.co.nz>
|
64
|
+
AuthorDate: 2019-06-19 21:06:57 +1200
|
65
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
66
|
+
CommitDate: 2019-07-12 10:39:00 +0900
|
67
|
+
|
68
|
+
Remove IA64 support.
|
69
|
+
|
70
|
+
commit e9a48c774672a1bb5de5905aa7b5ac2becf895c3
|
71
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
72
|
+
AuthorDate: 2019-07-10 12:27:25 +0900
|
73
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
74
|
+
CommitDate: 2019-07-10 12:27:25 +0900
|
75
|
+
|
76
|
+
Update binary versions
|
77
|
+
|
78
|
+
commit f622b5a6ae2939af0338b043aca90ffd335fa90d
|
79
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
80
|
+
AuthorDate: 2019-07-10 10:51:24 +0900
|
81
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
82
|
+
CommitDate: 2019-07-10 10:55:21 +0900
|
83
|
+
|
84
|
+
Make constdefs.h with rake
|
85
|
+
|
86
|
+
`RbConfig.ruby` is not runnable but the target platform binary
|
87
|
+
when cross-compiling in rake-compiler-dock.
|
88
|
+
|
89
|
+
commit e1674c18f5a0faf881b362363f428d139baef3b4
|
90
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
91
|
+
AuthorDate: 2019-07-10 10:50:29 +0900
|
92
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
93
|
+
CommitDate: 2019-07-10 10:51:01 +0900
|
94
|
+
|
95
|
+
Added build:mingw
|
96
|
+
|
97
|
+
commit 4f791590d95a410d4225b71f35b27d0f14dc2acd
|
98
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
99
|
+
AuthorDate: 2019-07-10 10:44:10 +0900
|
100
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
101
|
+
CommitDate: 2019-07-10 10:44:10 +0900
|
102
|
+
|
103
|
+
Added Etc::VERSION
|
104
|
+
|
105
|
+
commit 37bf414e7031e77eea82f0a72d461a6c09383797
|
106
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
107
|
+
AuthorDate: 2019-07-10 10:42:45 +0900
|
108
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
109
|
+
CommitDate: 2019-07-10 10:42:45 +0900
|
110
|
+
|
111
|
+
Unnecessary files for gem packages
|
112
|
+
|
113
|
+
commit 63da66202ff93060f6fc2fb92e257809d59661e5
|
114
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
115
|
+
AuthorDate: 2019-07-10 08:22:37 +0900
|
116
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
117
|
+
CommitDate: 2019-07-10 08:22:37 +0900
|
118
|
+
|
119
|
+
Removed unused files
|
120
|
+
|
121
|
+
commit f1fad5e4ae6e5eadd4d7a9a9d9e8868f18acbef8
|
122
|
+
Author: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
123
|
+
AuthorDate: 2018-10-20 19:26:59 +0900
|
124
|
+
Commit: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
125
|
+
CommitDate: 2018-10-20 19:26:59 +0900
|
126
|
+
|
127
|
+
Prefer to use File.exist?
|
128
|
+
|
129
|
+
commit 07ab6655d07c5b9cd5f115e5ebe449c90777b349
|
130
|
+
Author: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
131
|
+
AuthorDate: 2018-10-20 19:26:00 +0900
|
132
|
+
Commit: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
133
|
+
CommitDate: 2018-10-20 19:26:00 +0900
|
134
|
+
|
135
|
+
Use `depend` file insted of dependency target file.
|
136
|
+
|
137
|
+
commit 5a9187a647db1a11588082e63607edcc975a9170
|
138
|
+
Author: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
139
|
+
AuthorDate: 2018-10-20 16:37:05 +0900
|
140
|
+
Commit: SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
141
|
+
CommitDate: 2018-10-20 16:37:05 +0900
|
142
|
+
|
143
|
+
Added comments for constdefs.h.
|
@@ -0,0 +1,124 @@
|
|
1
|
+
-*- coding: utf-8 -*-
|
2
|
+
|
3
|
+
commit d504e4e93c3d78ce525101945af84554d1a088e0
|
4
|
+
Author: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
5
|
+
AuthorDate: 2020-12-23 13:58:48 +0900
|
6
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
7
|
+
CommitDate: 2020-12-23 13:58:48 +0900
|
8
|
+
|
9
|
+
Bump version to 1.2.0
|
10
|
+
|
11
|
+
commit fd94f4444f6aab0ca552d799d20a55f689cc01f0
|
12
|
+
Author: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
13
|
+
AuthorDate: 2020-12-23 13:58:03 +0900
|
14
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
15
|
+
CommitDate: 2020-12-23 13:58:03 +0900
|
16
|
+
|
17
|
+
Use ruby core test suite for assert_ractor
|
18
|
+
|
19
|
+
commit 8898e2ffcb91a67e1d1afa0852ee79f737e69539
|
20
|
+
Author: Marc-Andre Lafortune <github@marc-andre.ca>
|
21
|
+
AuthorDate: 2020-12-21 23:31:11 -0500
|
22
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
23
|
+
CommitDate: 2020-12-23 12:54:53 +0900
|
24
|
+
|
25
|
+
[ruby/etc] Make Ractor safe
|
26
|
+
|
27
|
+
commit 13ade43d7fa93d3bf426458637f31d4265ada1c7
|
28
|
+
Author: Marc-Andre Lafortune <github@marc-andre.ca>
|
29
|
+
AuthorDate: 2020-12-22 00:02:45 -0500
|
30
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
31
|
+
CommitDate: 2020-12-23 12:54:32 +0900
|
32
|
+
|
33
|
+
[ruby/etc] Refactor locks using mutex API
|
34
|
+
|
35
|
+
commit b229f5498d97dfb770560e4bc1e163c60f7de8dc
|
36
|
+
Author: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
37
|
+
AuthorDate: 2020-08-18 20:15:59 +0900
|
38
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
39
|
+
CommitDate: 2020-09-14 15:47:07 +0900
|
40
|
+
|
41
|
+
Update the license for the default gems to dual licenses
|
42
|
+
|
43
|
+
commit 6a4ab1c0c2e931590f34225edf60066a4a4fb084
|
44
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
45
|
+
AuthorDate: 2020-04-09 12:23:15 +0900
|
46
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
47
|
+
CommitDate: 2020-06-09 21:00:14 +0900
|
48
|
+
|
49
|
+
Ignore upper bits of pw_change on macOS too
|
50
|
+
|
51
|
+
commit b42863873903ff4853b53b16694031a6adcadbc3
|
52
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
53
|
+
AuthorDate: 2020-04-09 09:24:07 +0900
|
54
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
55
|
+
CommitDate: 2020-06-09 21:00:01 +0900
|
56
|
+
|
57
|
+
Ignore upper bits of pw_expire on macOS
|
58
|
+
|
59
|
+
`pw_expire` is declared as `time_t`, but actually not, and
|
60
|
+
`getpwuid` returns a garbage there.
|
61
|
+
|
62
|
+
Also the declaration of `struct passwd` in pwd.h and the manual
|
63
|
+
page contradict each other, interal `pw_fields` is mentioned only
|
64
|
+
in the latter. Maybe there is a confusion.
|
65
|
+
|
66
|
+
commit 283543c591e93225fd536e2b3e074eda1b68b35a
|
67
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
68
|
+
AuthorDate: 2020-04-08 16:06:30 +0900
|
69
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
70
|
+
CommitDate: 2020-06-09 20:59:50 +0900
|
71
|
+
|
72
|
+
Suppress -Wshorten-64-to-32 warnings
|
73
|
+
|
74
|
+
commit 91bdcc7833b60426624b4006a84e30db7632c887
|
75
|
+
Author: Yusuke Endoh <mame@ruby-lang.org>
|
76
|
+
AuthorDate: 2020-02-12 17:28:29 +0900
|
77
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
78
|
+
CommitDate: 2020-06-09 20:59:02 +0900
|
79
|
+
|
80
|
+
test/etc/test_etc.rb: skip some tests on Android
|
81
|
+
|
82
|
+
Android user management seems different from normal Unix system.
|
83
|
+
|
84
|
+
commit 25c538120ce241cb644911f6d75e73333be4305d
|
85
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
86
|
+
AuthorDate: 2020-04-01 15:18:00 +0900
|
87
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
88
|
+
CommitDate: 2020-04-01 17:47:36 +0900
|
89
|
+
|
90
|
+
Deprecate names under `Struct`
|
91
|
+
|
92
|
+
commit d8f1dd85d30ad8049037c419c9974f753a14d43f
|
93
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
94
|
+
AuthorDate: 2020-04-01 15:34:01 +0900
|
95
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
96
|
+
CommitDate: 2020-04-01 16:02:46 +0900
|
97
|
+
|
98
|
+
Drop binary gems support
|
99
|
+
|
100
|
+
Revert "Added build:mingw" e1674c18f5a0faf881b362363f428d139baef3b4.
|
101
|
+
|
102
|
+
commit b2f2eeac25fde8cd9fab8583b0ecfcc41006bdef
|
103
|
+
Author: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
104
|
+
AuthorDate: 2020-04-01 15:48:24 +0900
|
105
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
106
|
+
CommitDate: 2020-04-01 15:48:24 +0900
|
107
|
+
|
108
|
+
Unify tests configuration for GitHub Actions
|
109
|
+
|
110
|
+
commit 4efe98be491c11253b058c8a0a52718bb8e4b54d
|
111
|
+
Author: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
112
|
+
AuthorDate: 2019-12-05 20:45:55 +0900
|
113
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
114
|
+
CommitDate: 2019-12-05 20:45:55 +0900
|
115
|
+
|
116
|
+
Bye Bye Travis CI. Thanks.
|
117
|
+
|
118
|
+
commit fb090dc3a54e27af1841928ab18c96206f2bc566
|
119
|
+
Author: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
120
|
+
AuthorDate: 2019-12-05 20:45:38 +0900
|
121
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
122
|
+
CommitDate: 2019-12-05 20:45:38 +0900
|
123
|
+
|
124
|
+
Use GitHub Actions instead of Travis CI.
|
@@ -0,0 +1,83 @@
|
|
1
|
+
-*- coding: utf-8 -*-
|
2
|
+
|
3
|
+
commit 85ca541d0b2fc5205ac8bf87c93b95ac0bb272b4
|
4
|
+
Author: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
5
|
+
AuthorDate: 2021-10-19 20:51:17 +0900
|
6
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
7
|
+
CommitDate: 2021-10-19 20:51:17 +0900
|
8
|
+
|
9
|
+
Bump up etc version to 1.3.0
|
10
|
+
|
11
|
+
commit 7cbf03d22d74f50ab3a488d2c52fcd4901355466
|
12
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
13
|
+
AuthorDate: 2021-10-19 00:29:57 +0900
|
14
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
15
|
+
CommitDate: 2021-10-19 14:02:26 +0900
|
16
|
+
|
17
|
+
Remove unnecessary declaration
|
18
|
+
|
19
|
+
Fix #12
|
20
|
+
|
21
|
+
commit c989bacc4caf2d05331fbb0ab9dddd9c8a670709
|
22
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
23
|
+
AuthorDate: 2021-10-14 13:17:13 +0900
|
24
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
25
|
+
CommitDate: 2021-10-14 18:38:22 +0900
|
26
|
+
|
27
|
+
Get rid of alloca in the loop
|
28
|
+
|
29
|
+
commit e0a1dd99f0b9663bc33bee12a1f66028ccec622b
|
30
|
+
Author: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
31
|
+
AuthorDate: 2021-09-11 13:26:43 +0900
|
32
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
33
|
+
CommitDate: 2021-09-11 13:26:43 +0900
|
34
|
+
|
35
|
+
Bump up the latest version of CoreAssertions
|
36
|
+
|
37
|
+
commit 3ee4906dc7e9bf9d18f173695a3d4976df2f1807
|
38
|
+
Author: Peter Zhu <peter@peterzhu.ca>
|
39
|
+
AuthorDate: 2021-03-23 15:35:44 +0000
|
40
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
41
|
+
CommitDate: 2021-04-27 20:56:04 +0900
|
42
|
+
|
43
|
+
Fix leaked file descriptor in passwd test
|
44
|
+
|
45
|
+
commit f7dcc64f746f4cde6f9695ef6266343da017f66b
|
46
|
+
Author: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
47
|
+
AuthorDate: 2021-03-30 11:23:39 +0900
|
48
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
49
|
+
CommitDate: 2021-03-30 11:23:39 +0900
|
50
|
+
|
51
|
+
Use stable version of actions/checkout
|
52
|
+
|
53
|
+
commit 12bbf59f9a9c8bbbc4808745003d9ab9c3815399
|
54
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
55
|
+
AuthorDate: 2021-01-11 11:35:01 +0900
|
56
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
57
|
+
CommitDate: 2021-01-11 11:35:01 +0900
|
58
|
+
|
59
|
+
CI for 3.0
|
60
|
+
|
61
|
+
commit 0c5900bd21668fd286e56d112ca9d64fe2d578db
|
62
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
63
|
+
AuthorDate: 2021-01-11 11:31:52 +0900
|
64
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
65
|
+
CommitDate: 2021-01-11 11:31:52 +0900
|
66
|
+
|
67
|
+
Added fallback definition of RUBY_ATOMIC_EXCHANGE
|
68
|
+
|
69
|
+
commit f017bdfedfb89f89bd9b0c6928660fe2f4ff957f
|
70
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
71
|
+
AuthorDate: 2021-01-11 11:14:28 +0900
|
72
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
73
|
+
CommitDate: 2021-01-11 11:21:26 +0900
|
74
|
+
|
75
|
+
Check blocking variables at release
|
76
|
+
|
77
|
+
commit 2748288b25f8ff9540cc032154d913d909f20635
|
78
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
79
|
+
AuthorDate: 2020-12-23 16:30:16 +0900
|
80
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
81
|
+
CommitDate: 2021-01-11 11:20:37 +0900
|
82
|
+
|
83
|
+
etc: use atomic operation instead of mutex
|
@@ -0,0 +1,145 @@
|
|
1
|
+
-*- coding: utf-8 -*-
|
2
|
+
|
3
|
+
commit c094219a94fcadeebdaa62eed7a9eb1b751cd0b8
|
4
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
5
|
+
AuthorDate: 2022-01-05 12:41:53 +0900
|
6
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
7
|
+
CommitDate: 2022-01-05 12:41:53 +0900
|
8
|
+
|
9
|
+
Include change logs for reachable tags only
|
10
|
+
|
11
|
+
commit 20a71bbbe1248501c8276abaab1d1d576d9bc23e
|
12
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
13
|
+
AuthorDate: 2022-01-05 12:23:00 +0900
|
14
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
15
|
+
CommitDate: 2022-01-05 12:23:00 +0900
|
16
|
+
|
17
|
+
Force update tags
|
18
|
+
|
19
|
+
commit 66a36a50b4e5b7e59307f11d5b74c09be73de6d5
|
20
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
21
|
+
AuthorDate: 2022-01-03 21:38:03 +0900
|
22
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
23
|
+
CommitDate: 2022-01-05 11:31:01 +0900
|
24
|
+
|
25
|
+
Exclude change logs for pre 1.0
|
26
|
+
|
27
|
+
commit cb745edc566aa99a0e51f8a9881277240ea5a2c8
|
28
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
29
|
+
AuthorDate: 2022-01-03 18:11:17 +0900
|
30
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
31
|
+
CommitDate: 2022-01-05 11:31:01 +0900
|
32
|
+
|
33
|
+
Fetch tags for change logs
|
34
|
+
|
35
|
+
commit b57cc4827f33177294a3b1e6b9cef7d7e1762618
|
36
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
37
|
+
AuthorDate: 2022-01-03 18:06:18 +0900
|
38
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
39
|
+
CommitDate: 2022-01-05 11:31:01 +0900
|
40
|
+
|
41
|
+
Derive extra_rdoc_files from files
|
42
|
+
|
43
|
+
commit ef604a211b11e5c958f8ffeb2803d36eaf35c0c8
|
44
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
45
|
+
AuthorDate: 2022-01-02 19:25:10 +0900
|
46
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
47
|
+
CommitDate: 2022-01-05 11:31:01 +0900
|
48
|
+
|
49
|
+
Build package
|
50
|
+
|
51
|
+
commit 7dc9f87403f969da7129f071bf88013592cec99e
|
52
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
53
|
+
AuthorDate: 2022-01-02 21:37:47 +0900
|
54
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
55
|
+
CommitDate: 2022-01-05 11:31:01 +0900
|
56
|
+
|
57
|
+
Move development dependencies to Gemfile
|
58
|
+
|
59
|
+
commit a38be0bbffa0dae12513efac241aa2c4526fcc80
|
60
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
61
|
+
AuthorDate: 2022-01-02 14:49:10 +0900
|
62
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
63
|
+
CommitDate: 2022-01-02 14:49:10 +0900
|
64
|
+
|
65
|
+
[DOC] Exclude the last tag if it is the head
|
66
|
+
|
67
|
+
commit 82dd69a4cfd3ce7d8f0895f592e89cf04bc35d6b
|
68
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
69
|
+
AuthorDate: 2022-01-02 14:34:49 +0900
|
70
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
71
|
+
CommitDate: 2022-01-02 14:34:49 +0900
|
72
|
+
|
73
|
+
bump up to 1.3.1
|
74
|
+
|
75
|
+
commit f0384b435d93eee2add3b13bbb7ea28e1b605f6b
|
76
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
77
|
+
AuthorDate: 2022-01-02 14:34:12 +0900
|
78
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
79
|
+
CommitDate: 2022-01-02 14:34:41 +0900
|
80
|
+
|
81
|
+
Use version in etc.c
|
82
|
+
|
83
|
+
commit 17b99fe42e4d07cac4f012a304912091727a7228
|
84
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
85
|
+
AuthorDate: 2022-01-02 14:26:09 +0900
|
86
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
87
|
+
CommitDate: 2022-01-02 14:26:57 +0900
|
88
|
+
|
89
|
+
[DOC] Refine Etc::Passwd#passwd description
|
90
|
+
|
91
|
+
commit 106429f10ba08d04031a0ac5427a8ce1f5d52773
|
92
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
93
|
+
AuthorDate: 2022-01-02 14:22:59 +0900
|
94
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
95
|
+
CommitDate: 2022-01-02 14:26:53 +0900
|
96
|
+
|
97
|
+
[DOC] Document Etc::Passwd and Etc::Group as classes
|
98
|
+
|
99
|
+
commit 8c8c6198e23923955bac2cef32b66b4ff2e541ab
|
100
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
101
|
+
AuthorDate: 2022-01-02 14:07:22 +0900
|
102
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
103
|
+
CommitDate: 2022-01-02 14:26:44 +0900
|
104
|
+
|
105
|
+
[DOC] Add document task
|
106
|
+
|
107
|
+
commit 959416b18a8ed3eb236b5645dea4f3ba4a7df853
|
108
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
109
|
+
AuthorDate: 2022-01-02 13:22:36 +0900
|
110
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
111
|
+
CommitDate: 2022-01-02 13:23:22 +0900
|
112
|
+
|
113
|
+
Update ruby versions
|
114
|
+
|
115
|
+
commit 70f5f7916df04397535e17ebf3a290afd01bb0f2
|
116
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
117
|
+
AuthorDate: 2022-01-02 13:21:37 +0900
|
118
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
119
|
+
CommitDate: 2022-01-02 13:21:37 +0900
|
120
|
+
|
121
|
+
Ignore logs [ci skip]
|
122
|
+
|
123
|
+
commit a2e219ed6e5f911c87c891494692c385b62a52d1
|
124
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
125
|
+
AuthorDate: 2022-01-02 13:11:16 +0900
|
126
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
127
|
+
CommitDate: 2022-01-02 13:11:16 +0900
|
128
|
+
|
129
|
+
Update rake files
|
130
|
+
|
131
|
+
commit 29f8a0bbfe5b6b70d668006b9f23c452a06a8199
|
132
|
+
Author: Takashi Kokubun <takashikkbn@gmail.com>
|
133
|
+
AuthorDate: 2021-12-14 20:47:57 -0800
|
134
|
+
Commit: GitHub <noreply@github.com>
|
135
|
+
CommitDate: 2021-12-14 20:47:57 -0800
|
136
|
+
|
137
|
+
s/RubyVM::JIT/RubyVM::MJIT/g (#16)
|
138
|
+
|
139
|
+
commit 0484ac409b93b330ac1273d71ae9cc241be96c06
|
140
|
+
Author: Olle Jonsson <olle.jonsson@gmail.com>
|
141
|
+
AuthorDate: 2021-12-11 09:26:02 +0100
|
142
|
+
Commit: GitHub <noreply@github.com>
|
143
|
+
CommitDate: 2021-12-11 17:26:02 +0900
|
144
|
+
|
145
|
+
CI: use bundler-cache (#14)
|
@@ -0,0 +1,73 @@
|
|
1
|
+
-*- coding: utf-8 -*-
|
2
|
+
|
3
|
+
commit 714e8658570a49bf258d63b41a10c95445b7dce6
|
4
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
5
|
+
AuthorDate: 2022-01-05 12:23:00 +0900
|
6
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
7
|
+
CommitDate: 2022-01-05 12:33:23 +0900
|
8
|
+
|
9
|
+
Force update tags
|
10
|
+
|
11
|
+
commit c8a133fe95877bfd0264a2db8c657b3f7800af7f
|
12
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
13
|
+
AuthorDate: 2022-01-03 21:38:03 +0900
|
14
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
15
|
+
CommitDate: 2022-01-03 21:38:03 +0900
|
16
|
+
|
17
|
+
Exclude change logs for pre 1.0
|
18
|
+
|
19
|
+
commit 7dbb4909785207abf2a8cdc2a5e55399eb7f3327
|
20
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
21
|
+
AuthorDate: 2022-01-03 18:11:17 +0900
|
22
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
23
|
+
CommitDate: 2022-01-03 18:11:17 +0900
|
24
|
+
|
25
|
+
Fetch tags for change logs
|
26
|
+
|
27
|
+
commit e8ecce3442fde54eb651f382b56949acf3df0ec0
|
28
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
29
|
+
AuthorDate: 2022-01-03 18:06:18 +0900
|
30
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
31
|
+
CommitDate: 2022-01-03 18:06:18 +0900
|
32
|
+
|
33
|
+
Derive extra_rdoc_files from files
|
34
|
+
|
35
|
+
commit 3d8de7d52c86e5bdb7749fe6684540e7663973fc
|
36
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
37
|
+
AuthorDate: 2022-01-02 19:25:10 +0900
|
38
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
39
|
+
CommitDate: 2022-01-02 21:56:29 +0900
|
40
|
+
|
41
|
+
Build package
|
42
|
+
|
43
|
+
commit 5cabc3996aeb76b5b4ea401ac042a53c29255a3b
|
44
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
45
|
+
AuthorDate: 2022-01-02 21:37:47 +0900
|
46
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
47
|
+
CommitDate: 2022-01-02 21:42:16 +0900
|
48
|
+
|
49
|
+
Move development dependencies to Gemfile
|
50
|
+
|
51
|
+
commit f87fe7ad934cdd74992bf55c2b88cd986be3dc15
|
52
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
53
|
+
AuthorDate: 2022-01-02 15:15:52 +0900
|
54
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
55
|
+
CommitDate: 2022-01-02 15:15:52 +0900
|
56
|
+
|
57
|
+
Note for rb_deprecate_constant [ci skip]
|
58
|
+
|
59
|
+
commit 143edbd215dbf48d7636e5a2c038ef7a2e6fcf56
|
60
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
61
|
+
AuthorDate: 2022-01-02 14:54:03 +0900
|
62
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
63
|
+
CommitDate: 2022-01-02 15:02:15 +0900
|
64
|
+
|
65
|
+
Remove deprecate constants under Struct
|
66
|
+
|
67
|
+
commit ca41f182f6141da53c8c56c5ed8c3e17998a9ece
|
68
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
69
|
+
AuthorDate: 2022-01-02 14:53:30 +0900
|
70
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
71
|
+
CommitDate: 2022-01-02 14:53:30 +0900
|
72
|
+
|
73
|
+
bump up to 1.4.0
|
@@ -0,0 +1,97 @@
|
|
1
|
+
-*- coding: utf-8 -*-
|
2
|
+
|
3
|
+
commit b3e9d9ceb0984d54c9b0d5d2e6c20e007be824fb
|
4
|
+
Author: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
5
|
+
AuthorDate: 2022-12-05 15:05:09 +0900
|
6
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
7
|
+
CommitDate: 2022-12-05 15:05:09 +0900
|
8
|
+
|
9
|
+
Bump version to 1.4.1
|
10
|
+
|
11
|
+
commit 6c9a0b4e5db79160709282bc14aae3ed6d423cee
|
12
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
13
|
+
AuthorDate: 2022-06-19 10:59:03 +0900
|
14
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
15
|
+
CommitDate: 2022-06-19 10:59:03 +0900
|
16
|
+
|
17
|
+
[DOC] Markup constant path names
|
18
|
+
|
19
|
+
commit a8801e07d17a3535c8e9534d7167b67096cc5282
|
20
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
21
|
+
AuthorDate: 2022-06-19 10:45:11 +0900
|
22
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
23
|
+
CommitDate: 2022-06-19 10:45:11 +0900
|
24
|
+
|
25
|
+
[DOC] Markup string literals
|
26
|
+
|
27
|
+
commit ea517399741f20fbea1bed65a784a38b7a1f0390
|
28
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
29
|
+
AuthorDate: 2022-06-19 10:43:43 +0900
|
30
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
31
|
+
CommitDate: 2022-06-19 10:44:41 +0900
|
32
|
+
|
33
|
+
[DOC] Fix reference to different module
|
34
|
+
|
35
|
+
commit e7343b4e6950d1604eb46940456920ec8beb96d5
|
36
|
+
Author: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
37
|
+
AuthorDate: 2022-06-19 10:26:21 +0900
|
38
|
+
Commit: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
39
|
+
CommitDate: 2022-06-19 10:26:21 +0900
|
40
|
+
|
41
|
+
[DOC] Update
|
42
|
+
|
43
|
+
System-dependent feature macros are automatically detected by
|
44
|
+
extconf.rb, and are not used by users.
|
45
|
+
|
46
|
+
commit 8f24e74346f737ea2f9834558715aa48c2471a1c
|
47
|
+
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
48
|
+
AuthorDate: 2022-04-11 04:23:17 +0000
|
49
|
+
Commit: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
50
|
+
CommitDate: 2022-04-11 13:29:46 +0900
|
51
|
+
|
52
|
+
Bump actions/upload-artifact from 2 to 3
|
53
|
+
|
54
|
+
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3.
|
55
|
+
- [Release notes](https://github.com/actions/upload-artifact/releases)
|
56
|
+
- [Commits](https://github.com/actions/upload-artifact/compare/v2...v3)
|
57
|
+
|
58
|
+
---
|
59
|
+
updated-dependencies:
|
60
|
+
- dependency-name: actions/upload-artifact
|
61
|
+
dependency-type: direct:production
|
62
|
+
update-type: version-update:semver-major
|
63
|
+
...
|
64
|
+
|
65
|
+
Signed-off-by: dependabot[bot] <support@github.com>
|
66
|
+
|
67
|
+
commit 9354594223de532bedf3630f053ea65b186c6cbc
|
68
|
+
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
69
|
+
AuthorDate: 2022-03-25 16:54:32 +0900
|
70
|
+
Commit: GitHub <noreply@github.com>
|
71
|
+
CommitDate: 2022-03-25 16:54:32 +0900
|
72
|
+
|
73
|
+
Bump actions/checkout from 2 to 3 (#21)
|
74
|
+
|
75
|
+
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
|
76
|
+
- [Release notes](https://github.com/actions/checkout/releases)
|
77
|
+
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
|
78
|
+
- [Commits](https://github.com/actions/checkout/compare/v2...v3)
|
79
|
+
|
80
|
+
---
|
81
|
+
updated-dependencies:
|
82
|
+
- dependency-name: actions/checkout
|
83
|
+
dependency-type: direct:production
|
84
|
+
update-type: version-update:semver-major
|
85
|
+
...
|
86
|
+
|
87
|
+
Signed-off-by: dependabot[bot] <support@github.com>
|
88
|
+
|
89
|
+
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
90
|
+
|
91
|
+
commit d4805047a01a979a0c060436fa73e79120967e2c
|
92
|
+
Author: Hiroshi SHIBATA <hsbt@ruby-lang.org>
|
93
|
+
AuthorDate: 2022-03-25 16:47:16 +0900
|
94
|
+
Commit: GitHub <noreply@github.com>
|
95
|
+
CommitDate: 2022-03-25 16:47:16 +0900
|
96
|
+
|
97
|
+
Added dependabot (#20)
|
metadata
CHANGED
@@ -1,85 +1,54 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: etc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yukihiro Matsumoto
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
12
|
-
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: bundler
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ">="
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '0'
|
20
|
-
type: :development
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - ">="
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: '0'
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: rake
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0'
|
34
|
-
type: :development
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - ">="
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '0'
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: rake-compiler
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - ">="
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - ">="
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: test-unit
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - ">="
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '0'
|
11
|
+
date: 2022-12-09 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
69
13
|
description: Provides access to information typically stored in UNIX /etc directory.
|
70
14
|
email:
|
71
15
|
- matz@ruby-lang.org
|
72
16
|
executables: []
|
73
17
|
extensions:
|
74
18
|
- ext/etc/extconf.rb
|
75
|
-
extra_rdoc_files:
|
19
|
+
extra_rdoc_files:
|
20
|
+
- ChangeLog
|
21
|
+
- LICENSE.txt
|
22
|
+
- README.md
|
23
|
+
- ext/etc/constdefs.h
|
24
|
+
- ext/etc/etc.c
|
25
|
+
- ext/etc/extconf.rb
|
26
|
+
- ext/etc/mkconstants.rb
|
27
|
+
- logs/ChangeLog-1.0.0
|
28
|
+
- logs/ChangeLog-1.0.1
|
29
|
+
- logs/ChangeLog-1.1.0
|
30
|
+
- logs/ChangeLog-1.2.0
|
31
|
+
- logs/ChangeLog-1.3.0
|
32
|
+
- logs/ChangeLog-1.3.1
|
33
|
+
- logs/ChangeLog-1.4.0
|
34
|
+
- logs/ChangeLog-1.4.1
|
35
|
+
- test/etc/test_etc.rb
|
76
36
|
files:
|
37
|
+
- ChangeLog
|
77
38
|
- LICENSE.txt
|
78
39
|
- README.md
|
79
40
|
- ext/etc/constdefs.h
|
80
41
|
- ext/etc/etc.c
|
81
42
|
- ext/etc/extconf.rb
|
82
43
|
- ext/etc/mkconstants.rb
|
44
|
+
- logs/ChangeLog-1.0.0
|
45
|
+
- logs/ChangeLog-1.0.1
|
46
|
+
- logs/ChangeLog-1.1.0
|
47
|
+
- logs/ChangeLog-1.2.0
|
48
|
+
- logs/ChangeLog-1.3.0
|
49
|
+
- logs/ChangeLog-1.3.1
|
50
|
+
- logs/ChangeLog-1.4.0
|
51
|
+
- logs/ChangeLog-1.4.1
|
83
52
|
- test/etc/test_etc.rb
|
84
53
|
homepage: https://github.com/ruby/etc
|
85
54
|
licenses:
|
@@ -87,21 +56,23 @@ licenses:
|
|
87
56
|
- BSD-2-Clause
|
88
57
|
metadata: {}
|
89
58
|
post_install_message:
|
90
|
-
rdoc_options:
|
59
|
+
rdoc_options:
|
60
|
+
- "--main"
|
61
|
+
- README.md
|
91
62
|
require_paths:
|
92
63
|
- lib
|
93
64
|
required_ruby_version: !ruby/object:Gem::Requirement
|
94
65
|
requirements:
|
95
66
|
- - ">="
|
96
67
|
- !ruby/object:Gem::Version
|
97
|
-
version: 2.
|
68
|
+
version: 2.6.0
|
98
69
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
99
70
|
requirements:
|
100
71
|
- - ">="
|
101
72
|
- !ruby/object:Gem::Version
|
102
73
|
version: '0'
|
103
74
|
requirements: []
|
104
|
-
rubygems_version: 3.
|
75
|
+
rubygems_version: 3.4.0.dev
|
105
76
|
signing_key:
|
106
77
|
specification_version: 4
|
107
78
|
summary: Provides access to information typically stored in UNIX /etc directory.
|