public
Description: grep replacement in pure Ruby
Homepage: http://rak.rubyforge.org/
Clone URL: git://github.com/danlucraft/rak.git
rak /
name age message
file .gitignore Wed Nov 07 04:24:00 -0800 2007 Added -e and -s options. [Daniel Lucraft]
file History.txt Sat Sep 26 22:44:36 -0700 2009 Release 1.0 [danlucraft]
file Manifest.txt Mon Oct 29 09:40:40 -0700 2007 cleanup up and restored lib git-svn-id: file:/... [lucraft]
file README.txt Sat Sep 26 22:44:36 -0700 2009 Release 1.0 [danlucraft]
file Rakefile Fri Nov 02 03:18:34 -0700 2007 fixed some docs git-svn-id: file:///home/dan/s... [lucraft]
directory bin/ Sat Sep 26 22:44:36 -0700 2009 Release 1.0 [danlucraft]
directory lib/ Sat Sep 26 22:52:03 -0700 2009 Updated versions in gemspec to 1.0 [danlucraft]
file rak.gemspec Sat Sep 26 22:52:03 -0700 2009 Updated versions in gemspec to 1.0 [danlucraft]
directory spec/ Mon Aug 11 06:43:01 -0700 2008 Committed Juozas Gaigalas' negative file matchi... [danlucraft]
directory web/ Thu Jun 12 04:53:19 -0700 2008 updated website with new git repo [danlucraft]
README.txt
rak
http://rubyforge.org/projects/rak
Daniel Lucraft (http://danlucraft.com/blog/)

== DESCRIPTION:

Replacement for grep. Recursively scans directories to match a given
Ruby regular expression. Prints highlighted results.

Based on the Perl tool 'ack' by Andy Lester.

Examples with similar grep:
 
  $ rak pattern
  $ grep pattern $(find . | grep -v .svn)

  $ rak --ruby pattern
  $ grep pattern $(find . -name '*.rb' | grep -v .svn)

== FEATURES/PROBLEMS:
  
* Ruby regular expression syntax (uses oniguruma gem if installed).
* Highlighted output.
* Automatically recurses down the current directory or any given
  directories.
* Skips version control directories, backups like '~' and '#' and your
* ruby project's pkg directory.
* Allows inclusion and exclusion of files based on types.
* Many options similar to grep.

== SYNOPSIS:

See 'rak --help' for usage information.

== REQUIREMENTS:

* Ruby

== INSTALL:

* gem install rak

== LICENSE:

(The MIT License)

Copyright (c) 2007 Daniel Lucraft

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.