From 4641843ffdbb2b160846caf4664d3ea592e87a52 Mon Sep 17 00:00:00 2001 From: Alexander GQ Gerasiov Date: Sun, 22 Feb 2015 23:09:18 +0300 Subject: [PATCH] Add "requite 'pathname'" to lib/homesick/utils.rb Since Pathname is used in lib/homesick/utils.rb, it should require this module itself. Signed-off-by: Alexander GQ Gerasiov --- lib/homesick/utils.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/homesick/utils.rb b/lib/homesick/utils.rb index c8ef614..a69ab6d 100644 --- a/lib/homesick/utils.rb +++ b/lib/homesick/utils.rb @@ -1,4 +1,6 @@ # -*- encoding : utf-8 -*- +require 'pathname' + module Homesick # Various utility methods that are used by Homesick module Utils