Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions benchmark.gemspec
Original file line number Diff line number Diff line change
@@ -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"]

Expand Down
2 changes: 2 additions & 0 deletions lib/benchmark.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 0 additions & 4 deletions lib/benchmark/version.rb

This file was deleted.