summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJean Boussier <jean.boussier@gmail.com>2021-12-02 10:07:26 +0100
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2022-02-10 17:18:03 +0900
commit5221cb4468526a18875c21cff5dee5ac96d9873b (patch)
tree5c29bf5e76d639db74a8a820ca3c9e7079a9e90c /lib
parentfd710d7e9995679db80b7adf35bbda2cd4db90c6 (diff)
[ruby/ipaddr] Expose IPAddr::VERSION
An almost universal convention for gems is to expose Namespace::VERSION which makes it much easier when debugging etc. https://github.com/ruby/ipaddr/commit/587ae6996e
Diffstat (limited to 'lib')
-rw-r--r--lib/ipaddr.gemspec6
-rw-r--r--lib/ipaddr.rb1
2 files changed, 6 insertions, 1 deletions
diff --git a/lib/ipaddr.gemspec b/lib/ipaddr.gemspec
index 36e2300002..352570a213 100644
--- a/lib/ipaddr.gemspec
+++ b/lib/ipaddr.gemspec
@@ -3,9 +3,13 @@
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
+version = File.foreach(File.expand_path("ipaddr.rb", lib)).find do |line|
+ /^\s*VERSION\s*=\s*["'](.*)["']/ =~ line and break $1
+end
+
Gem::Specification.new do |spec|
spec.name = "ipaddr"
- spec.version = "1.2.3"
+ spec.version = version
spec.authors = ["Akinori MUSHA", "Hajimu UMEMOTO"]
spec.email = ["knu@idaemons.org", "ume@mahoroba.org"]
diff --git a/lib/ipaddr.rb b/lib/ipaddr.rb
index 5df798f5d7..9cc210c307 100644
--- a/lib/ipaddr.rb
+++ b/lib/ipaddr.rb
@@ -40,6 +40,7 @@ require 'socket'
# p ipaddr3 #=> #<IPAddr: IPv4:192.168.2.0/255.255.255.0>
class IPAddr
+ VERSION = "1.2.3"
# 32 bit mask for IPv4
IN4MASK = 0xffffffff