Project

grepfruit

0.01
The project is in a healthy, maintained state
A Ruby gem for searching text patterns in files with colorized output
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

~> 1.2
 Project Readme

Grepfruit: File Pattern Search Tool for Ruby

Gem Version Github Actions badge

Grepfruit is a Ruby gem for searching files within a directory for specified regular expression patterns, with exclusion options and JSON-formatted or colorized output for enhanced readability. Originally designed for CI/CD pipelines to search for TODO comments in Ruby on Rails applications, Grepfruit provides more user-friendly output than the standard grep command while maintaining the flexibility for diverse search scenarios.

Key Features:

  • Parallel search using Ractors
  • JSON output format for programmatic integration
  • Colorized output for improved readability
  • CI/CD pipeline friendly exit codes

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 grepfruit

Basic 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
-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,tmp/log,Gemfile.lock' dev/my_app

Line-Specific Exclusion

Exclude specific lines from search results:

grepfruit search -r 'FIXME|TODO' -e 'README.md:18'

Output Truncation

Limit output length for cleaner results:

grepfruit search -r 'FIXME|TODO' -t 50

Including Hidden Files

Search hidden files and directories:

grepfruit search -r 'FIXME|TODO' --search-hidden

JSON Output

Get structured JSON output:

grepfruit search -r 'TODO' --json

This outputs a JSON response containing search metadata, summary statistics, and detailed match information:

{
  "search": {
    "pattern": "/TODO/",
    "directory": "/path/to/search",
    "exclusions": ["node_modules"],
    "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"
    },
    // ...
  ]
}

Parallel Processing

Control the number of parallel workers:

grepfruit search -r 'TODO' -j 8  # Use 8 parallel workers
grepfruit search -r 'TODO' -j 1  # Sequential processing

Exit 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.