gem-grep 0.5.0 → 0.5.1
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/CHANGES.md +9 -0
- data/README.md +1 -2
- data/Rakefile +1 -1
- data/gem-grep.gemspec +4 -3
- data/lib/rubygems/commands/grep_command.rb +5 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f0cb2059ac91a5b40ee8503ccfb84e82012bd4ec
|
|
4
|
+
data.tar.gz: 14be2c5362ffc985fa8afbd0835546f1b546bf4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 910516f975e50c040504cfb5513446ac14b7bcace4197d015df8578089945ff37c61be7d741b9f19652ccb5766222dbee7882f484efb187f3d0c677e5af3b0d1
|
|
7
|
+
data.tar.gz: 0f158d178827f093925a52c721930eba8c93ce292df56e14aa96f7f2af5189e10cadb7d588bfa66a00955846f204781a1d8a6ee2721df58b6897adf043975a94
|
data/CHANGES.md
ADDED
data/README.md
CHANGED
|
@@ -11,9 +11,8 @@ by Lin Jen-Shin ([godfat](http://godfat.org))
|
|
|
11
11
|
|
|
12
12
|
grep the gem for a given name or grep the file for a given require path.
|
|
13
13
|
|
|
14
|
-
Also checkout [gem-
|
|
14
|
+
Also checkout [gem-eit][].
|
|
15
15
|
|
|
16
|
-
[gem-cd]: https://github.com/godfat/gem-cd
|
|
17
16
|
[gem-eit]: https://github.com/godfat/gem-eit
|
|
18
17
|
|
|
19
18
|
## REQUIREMENTS:
|
data/Rakefile
CHANGED
data/gem-grep.gemspec
CHANGED
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
# stub: gem-grep 0.5.
|
|
2
|
+
# stub: gem-grep 0.5.1 ruby lib
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "gem-grep"
|
|
6
|
-
s.version = "0.5.
|
|
6
|
+
s.version = "0.5.1"
|
|
7
7
|
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
9
9
|
s.authors = ["Lin Jen-Shin (godfat)"]
|
|
10
10
|
s.date = "2013-11-22"
|
|
11
|
-
s.description = "grep the gem for a given name or grep the file for a given require path.\n\nAlso checkout [gem-
|
|
11
|
+
s.description = "grep the gem for a given name or grep the file for a given require path.\n\nAlso checkout [gem-eit][].\n\n[gem-eit]: https://github.com/godfat/gem-eit"
|
|
12
12
|
s.email = ["godfat (XD) godfat.org"]
|
|
13
13
|
s.files = [
|
|
14
14
|
".gitignore",
|
|
15
15
|
".gitmodules",
|
|
16
16
|
".travis.yml",
|
|
17
|
+
"CHANGES.md",
|
|
17
18
|
"LICENSE",
|
|
18
19
|
"README.md",
|
|
19
20
|
"Rakefile",
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gem-grep
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lin Jen-Shin (godfat)
|
|
@@ -27,9 +27,8 @@ dependencies:
|
|
|
27
27
|
description: |-
|
|
28
28
|
grep the gem for a given name or grep the file for a given require path.
|
|
29
29
|
|
|
30
|
-
Also checkout [gem-
|
|
30
|
+
Also checkout [gem-eit][].
|
|
31
31
|
|
|
32
|
-
[gem-cd]: https://github.com/godfat/gem-cd
|
|
33
32
|
[gem-eit]: https://github.com/godfat/gem-eit
|
|
34
33
|
email:
|
|
35
34
|
- godfat (XD) godfat.org
|
|
@@ -40,6 +39,7 @@ files:
|
|
|
40
39
|
- .gitignore
|
|
41
40
|
- .gitmodules
|
|
42
41
|
- .travis.yml
|
|
42
|
+
- CHANGES.md
|
|
43
43
|
- LICENSE
|
|
44
44
|
- README.md
|
|
45
45
|
- Rakefile
|