From dd3cea4ef6fc759543c6457e419c31dc7df6140a Mon Sep 17 00:00:00 2001 From: Fire Demon Date: Thu, 19 Nov 2020 12:10:36 -0600 Subject: More robust loading of command interpreter modules --- app/lib/command_tag/commands/hello_world.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 app/lib/command_tag/commands/hello_world.rb (limited to 'app/lib/command_tag/commands/hello_world.rb') diff --git a/app/lib/command_tag/commands/hello_world.rb b/app/lib/command_tag/commands/hello_world.rb new file mode 100644 index 000000000..cc770ef80 --- /dev/null +++ b/app/lib/command_tag/commands/hello_world.rb @@ -0,0 +1,11 @@ +# frozen_string_literal: true + +module CommandTag::Commands::HelloWorld + def handle_helloworld_startup + @vars['hello_world'] = ['Hello, world!'] + end + + def handle_hello_world_with_return(_) + 'Hello, world!' + end +end -- cgit