supplement 2.10 → 2.11

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: e1206a611923d4942aca1f5145fb3a1548b71e54c8673715c300aecda10124b8
4
- data.tar.gz: bf8222831712d9da2da04516f6f164a88af77be4cc21fe2541ff89180455f9f8
3
+ metadata.gz: c2935fc175268595e2ed21a4a36e27a02efe9947af2de5fbeab6ccc8ff26ff6e
4
+ data.tar.gz: 23a99040b0aca40913bb5f5cfa7e81b0c57b3be820909bd3e350663df7592c41
5
5
  SHA512:
6
- metadata.gz: 84d67ad3aba9681598e54ed70eae410473eb0bdd4c9686d956c1b7277d5a8a3d95294e112174992639e9e1a4cca020eba65a1bf059a033422876e882f4a994e9
7
- data.tar.gz: 5ca80a6eb3a39af49e25bd63400e65c363fe8dad6adf610676b819cbede1cb2af76035fcb71686050a2d9b78bc5c21e5db9f82850e63c83c3e9f7c3681e90d36
6
+ metadata.gz: 8d05e6b19340ab1ba16b5621991c6f7459bfc76583efd14ce158a88112f188dbdefb07bd9b2101d626be88b4ecaf5ce8fca7314c8743595b503f1a0f5edb118a
7
+ data.tar.gz: fdd8366aba00486f8c85673a40a517ecd5e549fbd594471aa6775e2f5ad9adcd9dd5c6642e6048b523ba2ce5a2c6a59ab4ea36233e9868f23be686b2d5c64dde
data/README CHANGED
@@ -1,4 +1,4 @@
1
- = supplement 2.10 -- Useful Ruby enhancements
1
+ = supplement 2.11 -- Useful Ruby enhancements
2
2
 
3
3
 
4
4
  Some simple Ruby extensions.
@@ -10,21 +10,25 @@ Autorake.configure {
10
10
 
11
11
  extending_ruby
12
12
 
13
- if RUBY_VERSION < "2.6" 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
13
+ if RUBY_VERSION < "2.7" then
14
+ if RUBY_VERSION < "2.6" then
15
+ enable :dir_children
16
+ if RUBY_VERSION < "1.9.2" then
17
+ enable :array_select_bang
18
+ if RUBY_VERSION < "1.9" then
19
+ enable :string_ord
20
+ enable :string_clear
21
+ if RUBY_VERSION < "1.8.7" then
22
+ enable :array_index_with_block
23
+ enable :kernel_tap
24
+ enable :string_start_with
25
+ enable :thread_exclusive
26
+ end
25
27
  end
26
28
  end
27
29
  end
30
+ else
31
+ enable :super_kwargs
28
32
  end
29
33
 
30
34
  if RUBY_VERSION < "1.9" then
@@ -1244,7 +1244,7 @@ rb_file_size( VALUE obj)
1244
1244
  */
1245
1245
 
1246
1246
  VALUE
1247
- rb_file_s_umask( int argc, VALUE *argv)
1247
+ rb_file_s_umask( int argc, VALUE *argv, VALUE file)
1248
1248
  {
1249
1249
  int omask = 0;
1250
1250
 
@@ -1309,7 +1309,7 @@ rb_dir_s_current( VALUE dir)
1309
1309
  */
1310
1310
 
1311
1311
  VALUE
1312
- rb_dir_s_mkdir_bang( int argc, VALUE *argv)
1312
+ rb_dir_s_mkdir_bang( int argc, VALUE *argv, VALUE dir)
1313
1313
  {
1314
1314
  VALUE path, modes;
1315
1315
 
@@ -1319,7 +1319,7 @@ rb_dir_s_mkdir_bang( int argc, VALUE *argv)
1319
1319
 
1320
1320
  parent[ 0] = rb_file_dirname( path);
1321
1321
  parent[ 1] = modes;
1322
- rb_dir_s_mkdir_bang( 2, parent);
1322
+ rb_dir_s_mkdir_bang( 2, parent, dir);
1323
1323
  if (!id_mkdir)
1324
1324
  id_mkdir = rb_intern( "mkdir");
1325
1325
  if (NIL_P(modes))
@@ -65,9 +65,9 @@ extern VALUE rb_num_cbrt( VALUE);
65
65
  extern VALUE rb_hash_notempty_p( VALUE);
66
66
 
67
67
  extern VALUE rb_file_size( VALUE);
68
- extern VALUE rb_file_s_umask( int, VALUE *);
68
+ extern VALUE rb_file_s_umask( int, VALUE *, VALUE);
69
69
  extern VALUE rb_dir_s_current( VALUE);
70
- extern VALUE rb_dir_s_mkdir_bang( int, VALUE *);
70
+ extern VALUE rb_dir_s_mkdir_bang( int, VALUE *, VALUE);
71
71
  extern VALUE rb_dir_children( VALUE);
72
72
 
73
73
  extern VALUE rb_match_begin( int, VALUE *, VALUE);
@@ -42,7 +42,11 @@ rb_locked_init( int argc, VALUE *argv, VALUE self)
42
42
  #endif
43
43
  int op;
44
44
 
45
+ #ifdef FEATURE_SUPER_KWARGS
46
+ rb_call_super_kw(argc, argv, RB_PASS_CALLED_KEYWORDS);
47
+ #else
45
48
  rb_call_super( argc, argv);
49
+ #endif
46
50
  GetOpenFile( self, fptr);
47
51
 
48
52
  op = fptr->mode & FMODE_WRITABLE ? LOCK_EX : LOCK_SH;
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.10'
4
+ version: '2.11'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bertram Scharpf
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-13 00:00:00.000000000 Z
11
+ date: 2020-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: autorake
@@ -59,7 +59,7 @@ homepage: http://www.bertram-scharpf.de/software/supplement
59
59
  licenses:
60
60
  - BSD-2-Clause
61
61
  metadata: {}
62
- post_install_message:
62
+ post_install_message:
63
63
  rdoc_options:
64
64
  - "--charset"
65
65
  - utf-8
@@ -80,7 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
80
80
  requirements:
81
81
  - Ruby and the autorake gem
82
82
  rubygems_version: 3.0.6
83
- signing_key:
83
+ signing_key:
84
84
  specification_version: 4
85
85
  summary: Simple Ruby extensions
86
86
  test_files: []