Sha256: 162fcbe020e93dbbc27ba1d7acf3ca582e70f6006f0de8f47d146150791646b2

Contents?: true

Size: 303 Bytes

Versions: 6

Compression:

Stored size: 303 Bytes

Contents

# frozen_string_literal: true

module Lite
  module Command
    class Simple

      class << self

        def call(*args, **kwargs, &block)
          raise Lite::Command::NotImplementedError unless defined?(execute)

          execute(*args, **kwargs, &block)
        end

      end

    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
lite-command-1.5.0 lib/lite/command/simple.rb
lite-command-1.4.1 lib/lite/command/simple.rb
lite-command-1.4.0 lib/lite/command/simple.rb
lite-command-1.3.2 lib/lite/command/simple.rb
lite-command-1.3.1 lib/lite/command/simple.rb
lite-command-1.3.0 lib/lite/command/simple.rb