grepfruit 2.0.1 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +2 -2
- data/grepfruit.gemspec +1 -1
- data/lib/grepfruit/version.rb +1 -1
- metadata +3 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c4d580e130902313d154cc1584dcc1a610252638678dcbb05f6010226987bf9
|
4
|
+
data.tar.gz: e0814d3764457e9386b3c5850cb82719cfa6dd580016ce213ef4ddb3fd76d310
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b73b3561372a4f7fe6a86d7b38de4b618fd1a5b730883bbe6ad338035a8a44c1c6788fee5d3202cde8d78c9d8ee4bd9d3ec65251f92dfae3fa5d4a06a1634df0
|
7
|
+
data.tar.gz: 8772fcef03d57c21a9dea7e7135027c878e351f9d58b221d7c831435064035c7ce93cb0bac20be43051a6edcb2d5778dbf4040dc3709f3e1a9b53e3f2b826496
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Grepfruit is a Ruby gem for searching files within a directory for a specified regular expression pattern, with options to exclude certain files or directories from the search and colorized output for better readability.
|
7
7
|
|
8
|
-
<img width="
|
8
|
+
<img width="431" alt="Screenshot 2024-12-26 at 18 01 39" src="https://github.com/user-attachments/assets/e3fdb4f7-c4d9-4c8d-9a5a-228f2be55d52" />
|
9
9
|
|
10
10
|
Grepfruit was originally created to be used in CI/CD pipelines to search for `TODO` comments in Ruby on Rails applications and provide more user-friendly output than the standard `grep` command, but it is flexible enough to be used for other similar purposes as well.
|
11
11
|
|
@@ -14,7 +14,7 @@ Grepfruit was originally created to be used in CI/CD pipelines to search for `TO
|
|
14
14
|
Add this line to your application's Gemfile:
|
15
15
|
|
16
16
|
```ruby
|
17
|
-
gem
|
17
|
+
gem "grepfruit"
|
18
18
|
```
|
19
19
|
|
20
20
|
And then execute:
|
data/grepfruit.gemspec
CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
|
|
15
15
|
|
16
16
|
spec.files = [
|
17
17
|
"grepfruit.gemspec", "README.md", "CHANGELOG.md", "LICENSE.txt"
|
18
|
-
] +
|
18
|
+
] + Dir.glob("{exe,lib}/**/*")
|
19
19
|
|
20
20
|
spec.bindir = "exe"
|
21
21
|
spec.executables = ["grepfruit"]
|
data/lib/grepfruit/version.rb
CHANGED
metadata
CHANGED
@@ -1,17 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grepfruit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- enjaku4
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-02-21 00:00:00.000000000 Z
|
12
11
|
dependencies: []
|
13
|
-
description:
|
14
|
-
email:
|
15
12
|
executables:
|
16
13
|
- grepfruit
|
17
14
|
extensions: []
|
@@ -33,7 +30,6 @@ metadata:
|
|
33
30
|
source_code_uri: https://github.com/enjaku4/grepfruit
|
34
31
|
changelog_uri: https://github.com/enjaku4/grepfruit/blob/master/CHANGELOG.md
|
35
32
|
rubygems_mfa_required: 'true'
|
36
|
-
post_install_message:
|
37
33
|
rdoc_options: []
|
38
34
|
require_paths:
|
39
35
|
- lib
|
@@ -51,8 +47,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
51
47
|
- !ruby/object:Gem::Version
|
52
48
|
version: '0'
|
53
49
|
requirements: []
|
54
|
-
rubygems_version: 3.
|
55
|
-
signing_key:
|
50
|
+
rubygems_version: 3.6.2
|
56
51
|
specification_version: 4
|
57
52
|
summary: A Ruby gem for searching text patterns in files with colorized output
|
58
53
|
test_files: []
|