Sha256: f5366cbfd061a7a1541b7ec088a38fe11ce45710701aad8016854e14c4cf2caa

Contents?: true

Size: 201 Bytes

Versions: 1

Compression:

Stored size: 201 Bytes

Contents

require "./lib/kommando"

k = Kommando.run "$ echo hello"
raise "err" unless k.out == "hello"

puts k.out

k = Kommando.run_async "$ echo hello"
k.wait

raise "err" unless k.out == "hello"

puts k.out

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kommando-0.0.13 examples/shorthands.rb