diff options
author | Nobuyoshi Nakada <[email protected]> | 2020-07-29 00:31:52 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2020-07-30 19:03:18 +0900 |
commit | b2d96abb42abbe2e01f010ffc9ac51f0f9a50002 (patch) | |
tree | 57791da8a71280c335109916376e13f5e0c63af3 /lib/timeout.rb | |
parent | cfbae7dae052180e5dde05a27948ae8d779eccab (diff) |
Extract version number from the source
"requiring version.rb" strategy has some issues.
- cannot work when cross-compiling
- often introduces wrong namespace
- must know the superclasses
- costs at each runtime than at build-time
etc.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/3375
Diffstat (limited to 'lib/timeout.rb')
-rw-r--r-- | lib/timeout.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/timeout.rb b/lib/timeout.rb index 62a35169a4..cbe0bc7cdf 100644 --- a/lib/timeout.rb +++ b/lib/timeout.rb @@ -23,6 +23,8 @@ # Copyright:: (C) 2000 Information-technology Promotion Agency, Japan module Timeout + VERSION = "0.1.0" + # Raised by Timeout.timeout when the block times out. class Error < RuntimeError attr_reader :thread |