about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--Completion/Unix/Command/_ruby2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e9fb546ed..60b811106 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-07-11  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>
+
+	* unposted: fix typo in first normal arg action
+
 2005-07-10  Bart Schaefer  <schaefer@zsh.org>
 
 	* 21423: Travis Spencer: Completion/Unix/Command/_unexpand:
diff --git a/Completion/Unix/Command/_ruby b/Completion/Unix/Command/_ruby
index d0f3c3eb0..8a93be521 100644
--- a/Completion/Unix/Command/_ruby
+++ b/Completion/Unix/Command/_ruby
@@ -7,7 +7,7 @@ typeset -A opt_args
 
 local -a args
 args=(
-  '(-)1:script file:->script'
+  '(-)1:script file:_files -g "*.rb(-.)"'
   '*::script argument: _normal'
 )