about summary refs log tree commit diff
path: root/app/lib/command_tag/commands.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/lib/command_tag/commands.rb')
-rw-r--r--app/lib/command_tag/commands.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/lib/command_tag/commands.rb b/app/lib/command_tag/commands.rb
index 0248e6e99..f27486427 100644
--- a/app/lib/command_tag/commands.rb
+++ b/app/lib/command_tag/commands.rb
@@ -1,7 +1,10 @@
 # frozen_string_literal: true
+
+Dir[File.join(__dir__, 'command', '*.rb')].sort.each { |file| require file }
+
 module CommandTag::Commands
   def self.included(base)
-    CommandTag::Commands.constants.map(&CommandTag::Commands.method(:const_get)).grep(Module) do |mod|
+    CommandTag::Command.constants.map(&CommandTag::Command.method(:const_get)).grep(Module) do |mod|
       base.include(mod)
     end
   end