From 533bf6f19df7ea6bbfb9909f58afe2088a7914d5 Mon Sep 17 00:00:00 2001
From: Hiroshi SHIBATA <hsbt@ruby-lang.org>
Date: Sat, 26 Dec 2020 14:26:38 +0900
Subject: [PATCH] [ruby/racc] Use Racc::VERSION for gemspec

https://github.com/ruby/racc/commit/30f5760d85
---
 lib/racc/racc.gemspec | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/lib/racc/racc.gemspec b/lib/racc/racc.gemspec
index 1e375fe26b..5c345891ad 100644
--- a/lib/racc/racc.gemspec
+++ b/lib/racc/racc.gemspec
@@ -1,8 +1,14 @@
 # -*- encoding: utf-8 -*-
 
+begin
+  require_relative "lib/racc/info"
+rescue LoadError # Fallback to load version file in ruby core repository
+  require_relative "info"
+end
+
 Gem::Specification.new do |s|
   s.name = "racc"
-  s.version = "1.5.1"
+  s.version = Racc::VERSION
   s.summary = "Racc is a LALR(1) parser generator"
   s.description = <<DESC
 Racc is a LALR(1) parser generator.