Sha256: f818e8038ffafb467c4834cc6f95c7edb763d23db73ca411d481bd8d4fc5a359
Contents?: true
Size: 494 Bytes
Versions: 23
Compression:
Stored size: 494 Bytes
Contents
# We intend to keep System functions protected. class SystemPrivateAccessor extend OhlohScm::System class << self def run_private(cmd) run(cmd) end def run_with_error_private(cmd) run_with_err(cmd) end end end module SystemHelper # Cannot use the name `run` since it conflicts with Minitest#run. def run_p(cmd) SystemPrivateAccessor.run_private(cmd) end def run_with_error_p(cmd) SystemPrivateAccessor.run_with_error_private(cmd) end end
Version data entries
23 entries across 23 versions & 1 rubygems