diff options
Diffstat (limited to 'new/splash/lib')
-rw-r--r-- | new/splash/lib/splash.rb | 11 | ||||
-rw-r--r-- | new/splash/lib/splash/builder.rb | 8 | ||||
-rw-r--r-- | new/splash/lib/splash/server.rb | 3 |
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 |