From 38f4b61a588ffd515496a04663a2f3fa9178d161 Mon Sep 17 00:00:00 2001 From: Jacob Vosmaer <contact@jacobvosmaer.nl> Date: Tue, 25 Feb 2014 11:58:58 +0100 Subject: [PATCH] Make it possible to call Gitlab::Popen.popen --- lib/gitlab/popen.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/gitlab/popen.rb b/lib/gitlab/popen.rb index f9559012c4a..e2fbafb3899 100644 --- a/lib/gitlab/popen.rb +++ b/lib/gitlab/popen.rb @@ -3,6 +3,8 @@ require 'open3' module Gitlab module Popen + extend self + def popen(cmd, path=nil) unless cmd.is_a?(Array) raise "System commands must be given as an array of strings" -- GitLab