summaryrefslogtreecommitdiff
path: root/lib/racc/racc.gemspec
diff options
context:
space:
mode:
Diffstat (limited to 'lib/racc/racc.gemspec')
-rw-r--r--lib/racc/racc.gemspec8
1 files changed, 7 insertions, 1 deletions
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.