From 9e935e5d24a2ce90d62cc3fa55f5a62461c2d303 Mon Sep 17 00:00:00 2001 From: Yorick Peterse Date: Tue, 16 Sep 2014 11:58:56 +0200 Subject: [PATCH] Force the usage of the Racc Gem. This ensures that we're loading the Gem and not the standard library version. --- lib/oga.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/oga.rb b/lib/oga.rb index c0d9776..75cf725 100644 --- a/lib/oga.rb +++ b/lib/oga.rb @@ -1,3 +1,5 @@ +gem 'racc' + require 'ast' require 'set' require 'stringio'