From 9f306cfbb5877cb54e3756f60e60df0fa73b70f8 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Tue, 6 Feb 2018 21:42:02 -0500 Subject: [PATCH] add SvnRunner module --- share/svi/lib/svi.rb | 8 ++++++++ share/svi/lib/svi/svn_runner.rb | 4 ++++ 2 files changed, 12 insertions(+) create mode 100644 share/svi/lib/svi/svn_runner.rb diff --git a/share/svi/lib/svi.rb b/share/svi/lib/svi.rb index 4642b57..b8c71f1 100644 --- a/share/svi/lib/svi.rb +++ b/share/svi/lib/svi.rb @@ -1,2 +1,10 @@ +require_relative "svi/svn_runner" + module Svi + class << self + def run + end + end end + +Svi.run diff --git a/share/svi/lib/svi/svn_runner.rb b/share/svi/lib/svi/svn_runner.rb new file mode 100644 index 0000000..992b94d --- /dev/null +++ b/share/svi/lib/svi/svn_runner.rb @@ -0,0 +1,4 @@ +module Svi + module SvnRunner + end +end