From a44a5140074b8019bc0bb4928d546d1d78db060b Mon Sep 17 00:00:00 2001 From: Jeremy Cook Date: Sat, 19 Jan 2019 18:59:46 -0500 Subject: [PATCH] Reduced visibility of methods. --- lib/homesick/actions/file_actions.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/homesick/actions/file_actions.rb b/lib/homesick/actions/file_actions.rb index d3bc6b3..d9c7c7b 100644 --- a/lib/homesick/actions/file_actions.rb +++ b/lib/homesick/actions/file_actions.rb @@ -2,6 +2,8 @@ module Homesick module Actions # File-related helper methods for Homesick module FileActions + protected + def mv(source, destination) source = Pathname.new(source) destination = Pathname.new(destination + source.basename)