summaryrefslogtreecommitdiff
path: root/new/splash/lib
diff options
context:
space:
mode:
authormms <git@sapka.me>2025-01-05 22:34:37 +0100
committermms <git@sapka.me>2025-01-05 22:34:37 +0100
commit628fcf941c322dd0ed24a643c58394392484740e (patch)
tree87d1812f5bb27e9edfb9d8b812e03a3e115d0307 /new/splash/lib
parent89c6116c671c7701f86854111dd58a1933551b6e (diff)
bookmark dump
Diffstat (limited to 'new/splash/lib')
-rw-r--r--new/splash/lib/splash.rb11
-rw-r--r--new/splash/lib/splash/builder.rb8
-rw-r--r--new/splash/lib/splash/server.rb3
3 files changed, 16 insertions, 6 deletions
diff --git a/new/splash/lib/splash.rb b/new/splash/lib/splash.rb
index ce51e17..68674f9 100644
--- a/new/splash/lib/splash.rb
+++ b/new/splash/lib/splash.rb
@@ -1,10 +1,11 @@
-require_relative "../../lib/crys.rb"
-require_relative "splash/server"
+# frozen_string_literal: true
+
+require_relative '../../lib/crys'
+
+require_relative 'splash/server'
+require_relative 'splash/builder'
module Crys
module Splash
end
end
-
-
-
diff --git a/new/splash/lib/splash/builder.rb b/new/splash/lib/splash/builder.rb
new file mode 100644
index 0000000..5a737e9
--- /dev/null
+++ b/new/splash/lib/splash/builder.rb
@@ -0,0 +1,8 @@
+# frozen_string_literal: true
+
+module Crys
+ module Splash
+ class Builder < Crys::Builder
+ end
+ end
+end
diff --git a/new/splash/lib/splash/server.rb b/new/splash/lib/splash/server.rb
index 5c2a473..688d701 100644
--- a/new/splash/lib/splash/server.rb
+++ b/new/splash/lib/splash/server.rb
@@ -1,7 +1,8 @@
+# frozen_string_literal: true
+
module Crys
module Splash
class Server < Crys::Server
-
end
end
end