Sha256: 44b2eecf07950b353d9d1f7bea749a702700c2568c422ed648b63647fcf4f960

Contents?: true

Size: 267 Bytes

Versions: 12

Compression:

Stored size: 267 Bytes

Contents

# frozen_string_literal: true

module Lite
  module Command
    class Simple

      class << self

        def call(*args)
          raise Lite::Command::NotImplementedError unless defined?(execute)

          execute(*args)
        end

      end

    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
lite-command-1.2.0 lib/lite/command/simple.rb
lite-command-1.1.1 lib/lite/command/simple.rb
lite-command-1.1.0 lib/lite/command/simple.rb
lite-command-1.0.10 lib/lite/command/simple.rb
lite-command-1.0.9 lib/lite/command/simple.rb
lite-command-1.0.8 lib/lite/command/simple.rb
lite-command-1.0.7 lib/lite/command/simple.rb
lite-command-1.0.6 lib/lite/command/simple.rb
lite-command-1.0.5 lib/lite/command/simple.rb
lite-command-1.0.4 lib/lite/command/simple.rb
lite-command-1.0.3 lib/lite/command/simple.rb
lite-command-1.0.2 lib/lite/command/simple.rb