summaryrefslogtreecommitdiff
path: root/new/bin/deployer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'new/bin/deployer.rb')
-rw-r--r--new/bin/deployer.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/new/bin/deployer.rb b/new/bin/deployer.rb
new file mode 100644
index 00000000..4b6610cf
--- /dev/null
+++ b/new/bin/deployer.rb
@@ -0,0 +1,17 @@
+# frozen_string_literal: true
+
+require_relative '../lib/crys'
+require_relative 'mixins/splash'
+
+module Crys
+ class DeployerRunner
+ def initialize(source:, dest:)
+ @source = source
+ @dest = dest
+ end
+
+ def run
+ Crys::Deployer.new(source: @source, dest: @dest).run
+ end
+ end
+end