From a091bae56d2dc0f119db552e649d21a7c5b75846 Mon Sep 17 00:00:00 2001 From: Attila Domokos Date: Mon, 15 Aug 2016 22:48:16 -0500 Subject: [PATCH] Fix 'NameError: uninitialized constant PKG_NAME' --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index d8b4964e..f9237be5 100644 --- a/Rakefile +++ b/Rakefile @@ -19,7 +19,7 @@ task 'test' => ['test:unit', 'test:integration'] task :default => :test -Dir.glob('**/*.rake').each do |task_file| +Dir.glob('tasks/*.rake').each do |task_file| load task_file end