Grepfruit: Pattern Search Tool for CI/CD Pipelines
Grepfruit is a pattern search tool designed for CI/CD pipelines with exit codes that signal failure when matches are found. It outputs colorized text for readability or JSON for automation.
Table of Contents
Gem Usage:
- Installation
- Basic Usage
- Command Line Options
- Usage Examples
- Exit Status
Community Resources:
- Getting Help and Contributing
- License
- Code of Conduct
Installation
Install the gem:
gem install grepfruitBasic Usage
Search for regex patterns within files in a specified directory:
grepfruit search [options] [PATH]Or using shorthand s command:
grepfruit s [options] [PATH]If no PATH is specified, Grepfruit searches the current directory.
Command Line Options
| Option | Description |
|---|---|
-r, --regex REGEX |
Regex pattern to search for (required) |
-e, --exclude x,y,z |
Comma-separated list of files, directories, or lines to exclude |
-i, --include x,y,z |
Comma-separated list of file patterns to include (only these files will be searched) |
-t, --truncate N |
Truncate search result output to N characters |
-j, --jobs N |
Number of parallel workers (default: number of CPU cores) |
--search-hidden |
Include hidden files and directories in search |
--json |
Output results in JSON format |
Usage Examples
Basic Pattern Search
Search for TODO comments in the current directory:
grepfruit search -r 'TODO'Excluding Directories
Search for TODO patterns while excluding common build and dependency directories:
grepfruit search -r 'TODO' -e 'log,tmp,vendor,node_modules,assets'Multiple Pattern Search Excluding Both Directories and Files
Search for both FIXME and TODO comments in a specific directory:
grepfruit search -r 'FIXME|TODO' -e 'bin,*.md,tmp/log,Gemfile.lock' dev/my_appLine-Specific Exclusion
Exclude specific lines from search results:
grepfruit search -r 'FIXME|TODO' -e 'README.md:18'Including Specific File Types
Search only in specific file types using patterns:
grepfruit search -r 'TODO' -i '*.rb,*.js'
grepfruit search -r 'FIXME' -i '*.py'Output Truncation
Limit output length for cleaner results:
grepfruit search -r 'FIXME|TODO' -t 50Including Hidden Files
Search hidden files and directories:
grepfruit search -r 'FIXME|TODO' --search-hiddenJSON Output
Get structured JSON output:
grepfruit search -r 'TODO' -e 'node_modules' -i '*.rb,*.js' --json /path/to/searchThis outputs a JSON response containing search metadata, summary statistics, and detailed match information:
Parallel Processing
Grepfruit uses ractors for true parallel processing across CPU cores. Control the number of parallel workers:
grepfruit search -r 'TODO' -j 8 # Use 8 parallel workers
grepfruit search -r 'TODO' -j 1 # Sequential processingExit Status
Grepfruit returns meaningful exit codes for CI/CD integration:
- Exit code 0: No matches found (ideal for quality gates - code is clean)
- Exit code 1: Pattern matches were found (CI should fail - issues detected)
Getting Help and Contributing
Getting Help
Have a question or need assistance? Open a discussion in our discussions section for:
- Usage questions
- Implementation guidance
- Feature suggestions
Reporting Issues
Found a bug? Please create an issue with:
- A clear description of the problem
- Steps to reproduce the issue
- Your environment details (Ruby version, OS, etc.)
Contributing Code
Ready to contribute? You can:
- Fix bugs by submitting pull requests
- Improve documentation
- Add new features (please discuss first in our discussions section)
Before contributing, please read the contributing guidelines
License
The gem is available as open source under the terms of the MIT License.
Code of Conduct
Everyone interacting in the Grepfruit project is expected to follow the code of conduct.
{ "search": { "pattern": "/TODO/", "directory": "/path/to/search", "exclusions": ["node_modules"], "inclusions": ["*.rb", "*.js"], "timestamp": "2025-01-16T10:30:00+00:00" }, "summary": { "files_checked": 42, "files_with_matches": 8, "total_matches": 23 }, "matches": [ { "file": "src/main.js", "line": 15, "content": "// TODO: Implement error handling" }, // ... ] }