aboutsummaryrefslogtreecommitdiffstats
path: root/shells/ruby-shell/pkg-descr
diff options
context:
space:
mode:
Diffstat (limited to 'shells/ruby-shell/pkg-descr')
-rw-r--r--shells/ruby-shell/pkg-descr13
1 files changed, 13 insertions, 0 deletions
diff --git a/shells/ruby-shell/pkg-descr b/shells/ruby-shell/pkg-descr
new file mode 100644
index 000000000000..78592a7004bb
--- /dev/null
+++ b/shells/ruby-shell/pkg-descr
@@ -0,0 +1,13 @@
+shell.rb is a Ruby library to run commands and control jobs like a
+shell. Pipes and redirections work just as expected:
+
+ sh = Shell.cd("/foo")
+
+ sh.cat("bar") | sh.tee("baz") > "baa"
+ # or
+ sh.transact do
+ cat("bar") | tee("baz") > "baa"
+ end
+
+Author: Keiju Ishitsuka <keiju@ishitsuka.com>
+WWW: http://www.ruby-lang.org/en/raa-list.rhtml?name=Shell