Sha256: 321a5e020ce138b12225a3cea94204ffd5d8442228d31507c0442b97970944a1

Contents?: true

Size: 372 Bytes

Versions: 10

Compression:

Stored size: 372 Bytes

Contents

# frozen_string_literal: true

module CodeKindly
  module Utils
    class Shell
      include Deprecation

      class << self
        def run(command)
          deprecate :'Shell.run', :'Command.run', :'0.1.0'
          require 'open3'
          command = command.join(' ') if command.is_a?(Array)
          Open3.capture3 command
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
codekindly-utils-0.1.0 lib/code_kindly/utils/shell.rb
codekindly-utils-0.0.14 lib/code_kindly/utils/shell.rb
codekindly-utils-0.0.13 lib/code_kindly/utils/shell.rb
codekindly-utils-0.0.12 lib/code_kindly/utils/shell.rb
codekindly-utils-0.0.11 lib/code_kindly/utils/shell.rb
codekindly-utils-0.0.10 lib/code_kindly/utils/shell.rb
codekindly-utils-0.0.9 lib/code_kindly/utils/shell.rb
codekindly-utils-0.0.8 lib/code_kindly/utils/shell.rb
codekindly-utils-0.0.7 lib/code_kindly/utils/shell.rb
codekindly-utils-0.0.6 lib/code_kindly/utils/shell.rb