diff options
author | Hiroshi SHIBATA <[email protected]> | 2023-10-20 14:34:08 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2023-10-20 14:34:08 +0900 |
commit | bb849ffdb18305f01457de4e9848c830eb83a2d7 () | |
tree | 1da3fb74a6fdce77a9206e9aedfac09c8a296cc3 /tool/lib/core_assertions.rb | |
parent | 9ea1ee66c9852557f32f511db10ccc26e1f8c938 (diff) |
Added explicitly begin-end block for Ruby 2.4.
strscan, ipaddr and some default gems still support Ruby 2.4. After this, I extract this CoreAssertions to their repositories.
-rw-r--r-- | tool/lib/core_assertions.rb | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -781,11 +781,13 @@ eom ].find do |c| if Process.const_defined?(c) [c.to_sym, Process.const_get(c)].find do |clk| - Process.clock_gettime(clk) - rescue - # Constants may be defined but not implemented, e.g., mingw. - else - PERFORMANCE_CLOCK = clk end end end |