diff options
author | rm155 <[email protected]> | 2021-07-16 18:23:40 -0400 |
---|---|---|
committer | git <[email protected]> | 2021-09-27 19:36:20 +0900 |
commit | 0a38212e57fc3c07e5607c5bd79d21c51e5b48d2 (patch) | |
tree | 3a51df75bbbc7ed8709c1a5b4a4ebd647a66a1c4 /lib/timeout.rb | |
parent | efa0c31ce518bb26aca80392cce7fc5471ca9fef (diff) |
[ruby/timeout] Freeze VERSION
https://github.com/ruby/timeout/commit/ac7b010c41
Diffstat (limited to 'lib/timeout.rb')
-rw-r--r-- | lib/timeout.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/timeout.rb b/lib/timeout.rb index e7b11c0a86..6a7f538f99 100644 --- a/lib/timeout.rb +++ b/lib/timeout.rb @@ -23,7 +23,7 @@ # Copyright:: (C) 2000 Information-technology Promotion Agency, Japan module Timeout - VERSION = "0.1.1" + VERSION = "0.1.1".freeze # Raised by Timeout.timeout when the block times out. class Error < RuntimeError |