Sha256: 4b38ab53320b2b2c8d69ed27732fe2953911be49a6ec6e6a8e62f9a47c247623

Contents?: true

Size: 1.04 KB

Versions: 13

Compression:

Stored size: 1.04 KB

Contents

# frozen_string_literal: true

module ConvenientService
  module Examples
    module Dry
      module Gemfile
        module Services
          class RunShell
            include DryService::Config

            option :command
            option :debug, default: -> { false }

            contract do
              schema do
                required(:command).filled(:string)
                optional(:debug).value(:bool)
              end
            end

            def result
              Services::PrintShellCommand.result(text: command) if debug

              ##
              # NOTE: When the command exit code is 0, `system` return true, and false otherwise.
              # - https://ruby-doc.org/core-3.1.2/Kernel.html#method-i-system
              # - https://stackoverflow.com/a/37329716/12201472
              #
              if system(command)
                success
              else
                error(message: "#{command} returned non-zero exit code")
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
convenient_service-0.12.0 lib/convenient_service/examples/dry/gemfile/services/run_shell.rb
convenient_service-0.11.0 lib/convenient_service/examples/dry/gemfile/services/run_shell.rb
convenient_service-0.10.1 lib/convenient_service/examples/dry/gemfile/services/run_shell.rb
convenient_service-0.10.0 lib/convenient_service/examples/dry/gemfile/services/run_shell.rb
convenient_service-0.9.0 lib/convenient_service/examples/dry/gemfile/services/run_shell.rb
convenient_service-0.8.0 lib/convenient_service/examples/dry/gemfile/services/run_shell.rb
convenient_service-0.7.0 lib/convenient_service/examples/dry/gemfile/services/run_shell.rb
convenient_service-0.6.0 lib/convenient_service/examples/dry/gemfile/services/run_shell.rb
convenient_service-0.5.0 lib/convenient_service/examples/dry/gemfile/services/run_shell.rb
convenient_service-0.4.0 lib/convenient_service/examples/dry/gemfile/services/run_shell.rb
convenient_service-0.3.1 lib/convenient_service/examples/dry/gemfile/services/run_shell.rb
convenient_service-0.3.0 lib/convenient_service/examples/dry/gemfile/services/run_shell.rb
convenient_service-0.2.1 lib/convenient_service/examples/dry/gemfile/services/run_shell.rb