module Vedeu class Command attr_accessor :id, :attributes, :name, :klass, :keyword, :keypress class << self def create(attributes = {}) new(attributes).create end end def initialize(attributes = {}) @attributes = attributes || {} @name = attributes[:name] @klass = attributes[:klass] @keyword = attributes.fetch(:options, {}).fetch(:keyword, '') @keypress = attributes.fetch(:options, {}).fetch(:keypress, '') end def create CommandRepository.create(self) self end def execute(args = []) executable.call(*args) end def executable proc { |*args| attributes[:klass].dispatch(*args) } end end module ClassMethods def command(name, klass, options = {}) command_name = name.is_a?(Symbol) ? name.to_s : name Command.create({ name: command_name, klass: klass, options: options }) end end def self.included(receiver) receiver.extend(ClassMethods) end end