gem-grep 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7ded0223130476770666d2e69c114a162648f648
4
- data.tar.gz: 56d66086c3ac7dc10e2ca7d49096ae5242e00702
3
+ metadata.gz: f0cb2059ac91a5b40ee8503ccfb84e82012bd4ec
4
+ data.tar.gz: 14be2c5362ffc985fa8afbd0835546f1b546bf4d
5
5
  SHA512:
6
- metadata.gz: 749cb924cd19c37cd69018a85b70a3247bf3d3dfb347cc50e1c208bdbb4209f3d116cca90fde1415ad2ca4cc94299729a295860cb19707d076a922c03f1976ab
7
- data.tar.gz: 92ea9cdfa1b1d92685fa2fe406e3aec0f17b819782047214cb9148ff5d40808455d44b53eb35fd09d8f659cede38020b3b7af335447c8eef759eb27627cec242
6
+ metadata.gz: 910516f975e50c040504cfb5513446ac14b7bcace4197d015df8578089945ff37c61be7d741b9f19652ccb5766222dbee7882f484efb187f3d0c677e5af3b0d1
7
+ data.tar.gz: 0f158d178827f093925a52c721930eba8c93ce292df56e14aa96f7f2af5189e10cadb7d588bfa66a00955846f204781a1d8a6ee2721df58b6897adf043975a94
data/CHANGES.md ADDED
@@ -0,0 +1,9 @@
1
+ # CHANGES
2
+
3
+ ## gem-grep 0.5.1 -- 2013-11-22
4
+
5
+ * Showed the grep command.
6
+
7
+ ## gem-grep 0.5.0 -- 2013-11-22
8
+
9
+ * Birthday!
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-cd][], [gem-eit][].
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
@@ -8,6 +8,6 @@ end
8
8
 
9
9
  Gemgem.init(dir) do |s|
10
10
  s.name = 'gem-grep'
11
- s.version = '0.5.0'
11
+ s.version = '0.5.1'
12
12
  s.add_runtime_dependency('gem-path')
13
13
  end
data/gem-grep.gemspec CHANGED
@@ -1,19 +1,20 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: gem-grep 0.5.0 ruby lib
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.0"
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-cd][], [gem-eit][].\n\n[gem-cd]: https://github.com/godfat/gem-cd\n[gem-eit]: https://github.com/godfat/gem-eit"
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",
@@ -29,4 +29,9 @@ class Gem::Commands::GrepCommand < Gem::Command
29
29
  exec('grep', *options[:build_args], '-R', ui.outs.string.strip)
30
30
  end
31
31
  end
32
+
33
+ def exec *args
34
+ say(args.join(' '))
35
+ super
36
+ end
32
37
  end
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.0
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-cd][], [gem-eit][].
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