summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2023-05-25 15:58:09 +0900
committergit <svn-admin@ruby-lang.org>2023-05-25 07:08:44 +0000
commit5bfb317a938e461a9f99fe209765263cfe23b4d5 (patch)
tree6ae1717b15fde6aa99ac534b10bf4c24a2945f71 /lib
parent8e2fac7b9c9e9f83b6a84133678b5a98e799b84c (diff)
[ruby/benchmark] Don't use version.rb
https://github.com/ruby/benchmark/commit/6d51b10500
Diffstat (limited to 'lib')
-rw-r--r--lib/benchmark.rb2
-rw-r--r--lib/benchmark/benchmark.gemspec13
-rw-r--r--lib/benchmark/version.rb4
3 files changed, 9 insertions, 10 deletions
diff --git a/lib/benchmark.rb b/lib/benchmark.rb
index 79c782e262..d9f89239fc 100644
--- a/lib/benchmark.rb
+++ b/lib/benchmark.rb
@@ -121,6 +121,8 @@
module Benchmark
+ VERSION = "0.2.1"
+
BENCHMARK_VERSION = "2002-04-25" # :nodoc:
# Invokes the block with a Benchmark::Report object, which
diff --git a/lib/benchmark/benchmark.gemspec b/lib/benchmark/benchmark.gemspec
index 0aadf017f0..d6e98db805 100644
--- a/lib/benchmark/benchmark.gemspec
+++ b/lib/benchmark/benchmark.gemspec
@@ -1,12 +1,13 @@
-begin
- require_relative "lib/benchmark/version"
-rescue LoadError # Fallback to load version file in ruby core repository
- require_relative "version"
+name = File.basename(__FILE__, ".gemspec")
+version = ["lib", Array.new(name.count("-")+1, ".").join("/")].find do |dir|
+ break File.foreach(File.join(__dir__, dir, "#{name.tr('-', '/')}.rb")) do |line|
+ /^\s*VERSION\s*=\s*"(.*)"/ =~ line and break $1
+ end rescue nil
end
Gem::Specification.new do |spec|
- spec.name = "benchmark"
- spec.version = Benchmark::VERSION
+ spec.name = name
+ spec.version = version
spec.authors = ["Yukihiro Matsumoto"]
spec.email = ["matz@ruby-lang.org"]
diff --git a/lib/benchmark/version.rb b/lib/benchmark/version.rb
deleted file mode 100644
index 645966fd80..0000000000
--- a/lib/benchmark/version.rb
+++ /dev/null
@@ -1,4 +0,0 @@
-# frozen_string_literal: true
-module Benchmark
- VERSION = "0.2.1"
-end