We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 092af4e commit 30f5760Copy full SHA for 30f5760
racc.gemspec
@@ -1,8 +1,14 @@
1
# -*- encoding: utf-8 -*-
2
3
+begin
4
+ require_relative "lib/racc/info"
5
+rescue LoadError # Fallback to load version file in ruby core repository
6
+ require_relative "info"
7
+end
8
+
9
Gem::Specification.new do |s|
10
s.name = "racc"
- s.version = "1.5.1"
11
+ s.version = Racc::VERSION
12
s.summary = "Racc is a LALR(1) parser generator"
13
s.description = <<DESC
14
Racc is a LALR(1) parser generator.
0 commit comments