Sha256: 16498a6284671d1b345756daf7bd986716e83579bf48e92be4f23292d0a7107e

Contents?: true

Size: 263 Bytes

Versions: 1

Compression:

Stored size: 263 Bytes

Contents

module Tools
  module Support
    module Execution
      # Execute a console command
      # @param [String] Command to execute.
      # @return [String] Output of the execution.
      def execute_command(command)
        `#{command}`
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bt-tools-0.3.0 lib/tools/support/execution.rb