ruby-changes:64264
From: Kenta <ko1@a...>
Date: Fri, 18 Dec 2020 14:26:31 +0900 (JST)
Subject: [ruby-changes:64264] 5370963992 (master): [strscan] Version 3.0.0
https://git.ruby-lang.org/ruby.git/commit/?id=5370963992 From 5370963992a0c79925c812e70beb94d09dbc5e47 Mon Sep 17 00:00:00 2001 From: Kenta Murata <mrkn@m...> Date: Thu, 17 Dec 2020 18:32:08 +0900 Subject: [strscan] Version 3.0.0 https://github.com/ruby/strscan/commit/08645e4e77 diff --git a/ext/strscan/strscan.c b/ext/strscan/strscan.c index 0eb51e7..524e303 100644 --- a/ext/strscan/strscan.c +++ b/ext/strscan/strscan.c @@ -22,7 +22,7 @@ extern size_t onig_region_memsize(const struct re_registers *regs); https://github.com/ruby/ruby/blob/trunk/ext/strscan/strscan.c#L22 #include <stdbool.h> -#define STRSCAN_VERSION "1.0.4" +#define STRSCAN_VERSION "3.0.0" /* ======================================================================= Data Type Definitions diff --git a/ext/strscan/strscan.gemspec b/ext/strscan/strscan.gemspec index 734d439..fa9b895 100644 --- a/ext/strscan/strscan.gemspec +++ b/ext/strscan/strscan.gemspec @@ -1,7 +1,18 @@ https://github.com/ruby/ruby/blob/trunk/ext/strscan/strscan.gemspec#L1 # frozen_string_literal: true +# +source_version = ["", "ext/strscan/"].find do |dir| + begin + break File.open(File.join(__dir__, "#{dir}strscan.c")) {|f| + f.gets("\n#define STRSCAN_VERSION ") + f.gets[/\s*"(.+)"/, 1] + } + rescue Errno::ENOENT + end +end + Gem::Specification.new do |s| s.name = "strscan" - s.version = "1.0.4" + s.version = source_version s.summary = "Provides lexical scanning operations on a String." s.description = "Provides lexical scanning operations on a String." -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/