Sha256: 0bd15830e696aa0fa1a6c719339fdf16b19612c596632aaee1553466b02a25c3
Contents?: true
Size: 641 Bytes
Versions: 1
Compression:
Stored size: 641 Bytes
Contents
# frozen_string_literal: true ## # Usage example: # # ConvenientService::Examples::Standard::Gemfile::Services::AssertNodeAvailable.result # module ConvenientService module Examples module Standard module Gemfile module Services class AssertNodeAvailable include ConvenientService::Standard::Config ## # NOTE: `> /dev/null 2>&1` is used to hide output. # https://unix.stackexchange.com/a/119650/394253 # step Services::RunShell, in: {command: -> { "which node > /dev/null 2>&1" }} end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
convenient_service-0.12.0 | lib/convenient_service/examples/standard/gemfile/services/assert_node_available.rb |