<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -26,23 +26,20 @@ __gem() {
   local gem_command
   __gem_get_command
 
-  case &quot;$prev&quot; in
-    --config-file)
-      # leave COMPREPLY blank, let the default handle it
-      return;;
+  case $prev in
+  --config-file)
+    # leave COMPREPLY blank, let the default handle it
+    return;;
   esac
 
   local choices
-  case &quot;$gem_command&quot; in
-    &quot;&quot;)
-      choices=$commands
-      ;;
-    help)
-      choices=&quot;commands examples platforms $commands&quot;
-      ;;
-    uninstall | cleanup)
-      choices=$(__gem_installed_gems)
-      ;;
+  case $gem_command in
+  &quot;&quot;)
+    choices=$commands;;
+  help)
+    choices=&quot;commands examples platforms $commands&quot;;;
+  uninstall | cleanup)
+    choices=$(__gem_installed_gems);;
   esac
   [[ $cur == -* ]] &amp;&amp; choices=$options
   COMPREPLY=($(compgen -W &quot;$choices&quot; -- &quot;$cur&quot;))
@@ -53,17 +50,17 @@ __gem_get_command() {
   for ((i=1; i &lt; $COMP_CWORD; ++i)); do
     local arg=${COMP_WORDS[$i]}
 
-    case &quot;$arg&quot; in
-      -h | --help | -v | --version)
-        # these two options are command-killers
-        gem_command=-
-        return;;
-      --config-file)
-        # skip argument
-        ((++i));;
-      [^-]*)
-        gem_command=$arg
-        return;;
+    case $arg in
+    -h | --help | -v | --version)
+      # these two options are command-killers
+      gem_command=-
+      return;;
+    --config-file)
+      # skip argument
+      ((++i));;
+    [^-]*)
+      gem_command=$arg
+      return;;
     esac
   done
 }</diff>
      <filename>completion-gem</filename>
    </modified>
    <modified>
      <diff>@@ -27,7 +27,7 @@ __jruby() {
   for ((i=1; i &lt; $COMP_CWORD; ++i)); do
     local arg=${COMP_WORDS[$i]}
 
-    case &quot;$arg&quot; in
+    case $arg in
     -S)
       script_in_path=1;;
     -S*)</diff>
      <filename>completion-jruby</filename>
    </modified>
    <modified>
      <diff>@@ -13,14 +13,14 @@ __rails() {
   local prev=$3
   COMPREPLY=()
 
-  case &quot;$prev&quot; in
-    -r | --ruby)
-      # leave it to complete the path to a binary
-      return;;
-    -d | --database)
-      local dbs=&quot;mysql oracle postgresql sqlite2 sqlite3 frontbase ibm_db&quot;
-      COMPREPLY=($(compgen -W &quot;$dbs&quot; -- &quot;$cur&quot;))
-      return;;
+  case $prev in
+  -r | --ruby)
+    # leave it to complete the path to a binary
+    return;;
+  -d | --database)
+    local dbs=&quot;mysql oracle postgresql sqlite2 sqlite3 frontbase ibm_db&quot;
+    COMPREPLY=($(compgen -W &quot;$dbs&quot; -- &quot;$cur&quot;))
+    return;;
   esac
 
   if [[ $cur == -* ]]; then
@@ -36,16 +36,16 @@ __rails_script_server() {
   local prev=$3
   COMPREPLY=()
 
-  case &quot;$prev&quot; in
-    -e | --environment)
-      __rails_complete_environments &quot;$cur&quot;
-      return;;
-    *)
-      if [[ $cur == -* ]]; then
-        local options=&quot;
-          -p --port -b --binding -d --daemon -u --debugger -e --environment&quot;
-        COMPREPLY=($(compgen -W &quot;$options&quot; -- &quot;$cur&quot;))
-      fi
+  case $prev in
+  -e | --environment)
+    __rails_complete_environments &quot;$cur&quot;
+    return;;
+  *)
+    if [[ $cur == -* ]]; then
+      local options=&quot;
+        -p --port -b --binding -d --daemon -u --debugger -e --environment&quot;
+      COMPREPLY=($(compgen -W &quot;$options&quot; -- &quot;$cur&quot;))
+    fi
   esac
 }
 </diff>
      <filename>completion-rails</filename>
    </modified>
    <modified>
      <diff>@@ -14,50 +14,50 @@ __rake() {
   local prev=$3
   COMPREPLY=()
 
-  case &quot;$prev&quot; in
-    -f | --rakefile | -r | --require)
-      # leave COMPREPLY blank, let the default handle it
-      return;;
-    -I | --libdir | -R | --rakelibdir)
-      _filedir -d
-      # suffix all entries with a slash
-      COMPREPLY=(&quot;${COMPREPLY[@]/%//}&quot;)
-      return;;
-    *)
-      if [[ $cur == -* ]]; then
-        local options=&quot;
-          -C --classic-namespace -D --describe -n --dry-run -h --help
-          -I --libdir -N --nosearch -P --prereqs -q --quiet -f --rakefile
-          -R --rakelibdir -r --require -s --silent -T --tasks -t --trace
-          -v --verbose -V --version&quot;
-        COMPREPLY=($(compgen -W &quot;$options&quot; -- &quot;$cur&quot;))
-      elif [[ $cur == *'['* ]]; then
-        # parameter completion (using default compgen)
-        # $cur: example[param1,param2
-        # $args: param1,param2
-        local args=${cur#*[}
-        # $last_arg: param2
-        local last_arg=${args##*,}
-        # $prefix: example[param1,
-        local prefix=${cur%&quot;$last_arg&quot;}
-
-        # ugh, ugly hack here, but I'm out of ideas
-        local old_ifs=$IFS IFS=$'\n'
-        COMPREPLY=($(compgen -o default -- &quot;$last_arg&quot;))
-        local IFS=$old_ifs
-        # escape space characters...
-        COMPREPLY=(&quot;${COMPREPLY[@]// /\ }&quot;)
-        # and prepend the prefix to all completion options
-        COMPREPLY=(&quot;${COMPREPLY[@]/#/$prefix}&quot;)
-
-        __rake_remove_namespaces
-        # don't perform usual post-processing
-        return
-      else
-        local rakefile rakedir
-        __rake_get_rakefile || return
-        COMPREPLY=($(compgen -W &quot;$(__rake_tasks)&quot; -- &quot;$cur&quot;))
-      fi
+  case $prev in
+  -f | --rakefile | -r | --require)
+    # leave COMPREPLY blank, let the default handle it
+    return;;
+  -I | --libdir | -R | --rakelibdir)
+    _filedir -d
+    # suffix all entries with a slash
+    COMPREPLY=(&quot;${COMPREPLY[@]/%//}&quot;)
+    return;;
+  *)
+    if [[ $cur == -* ]]; then
+      local options=&quot;
+        -C --classic-namespace -D --describe -n --dry-run -h --help
+        -I --libdir -N --nosearch -P --prereqs -q --quiet -f --rakefile
+        -R --rakelibdir -r --require -s --silent -T --tasks -t --trace
+        -v --verbose -V --version&quot;
+      COMPREPLY=($(compgen -W &quot;$options&quot; -- &quot;$cur&quot;))
+    elif [[ $cur == *'['* ]]; then
+      # parameter completion (using default compgen)
+      # $cur: example[param1,param2
+      # $args: param1,param2
+      local args=${cur#*[}
+      # $last_arg: param2
+      local last_arg=${args##*,}
+      # $prefix: example[param1,
+      local prefix=${cur%&quot;$last_arg&quot;}
+
+      # ugh, ugly hack here, but I'm out of ideas
+      local old_ifs=$IFS IFS=$'\n'
+      COMPREPLY=($(compgen -o default -- &quot;$last_arg&quot;))
+      local IFS=$old_ifs
+      # escape space characters...
+      COMPREPLY=(&quot;${COMPREPLY[@]// /\ }&quot;)
+      # and prepend the prefix to all completion options
+      COMPREPLY=(&quot;${COMPREPLY[@]/#/$prefix}&quot;)
+
+      __rake_remove_namespaces
+      # don't perform usual post-processing
+      return
+    else
+      local rakefile rakedir
+      __rake_get_rakefile || return
+      COMPREPLY=($(compgen -W &quot;$(__rake_tasks)&quot; -- &quot;$cur&quot;))
+    fi
   esac
 
   __rake_remove_namespaces
@@ -95,13 +95,13 @@ __rake_get_rakefile() {
   for ((i=0; i &lt;= $COMP_CWORD - 1; ++i)); do
     local arg=${COMP_WORDS[$i]}
 
-    case &quot;$arg&quot; in
-      --rakefile | -f)
-        rakefile=${COMP_WORDS[$(($i + 1))]}
-        return;;
-      --rakefile=* | -f=*)
-        rakefile=${arg#*=}
-        return;;
+    case $arg in
+    --rakefile | -f)
+      rakefile=${COMP_WORDS[$(($i + 1))]}
+      return;;
+    --rakefile=* | -f=*)
+      rakefile=${arg#*=}
+      return;;
     esac
   done
 </diff>
      <filename>completion-rake</filename>
    </modified>
    <modified>
      <diff>@@ -25,7 +25,7 @@ __ruby() {
   for ((i=1; i &lt; $COMP_CWORD; ++i)); do
     local arg=${COMP_WORDS[$i]}
 
-    case &quot;$arg&quot; in
+    case $arg in
     --)
       # end of switches
       switches_accepted=&quot;&quot;</diff>
      <filename>completion-ruby</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>cc48cfd212bb6e66ee4f36dd84defe080b9b7f51</id>
    </parent>
  </parents>
  <author>
    <name>Daniel Luz</name>
    <email>dev@mernen.com</email>
  </author>
  <url>http://github.com/mernen/completion-ruby/commit/388cd6b4d8921e91cdb805ea9614278a099845f2</url>
  <id>388cd6b4d8921e91cdb805ea9614278a099845f2</id>
  <committed-date>2009-01-24T15:06:17-08:00</committed-date>
  <authored-date>2009-01-24T15:06:17-08:00</authored-date>
  <message>More stylistic, no-op changes.</message>
  <tree>a243b3c9e12fce061610b7251a45e22866c0141b</tree>
  <committer>
    <name>Daniel Luz</name>
    <email>dev@mernen.com</email>
  </committer>
</commit>
