bundle-info 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +4 -0
- data/bundle-info.gemspec +2 -2
- data/lib/bundle-info/version.rb +1 -1
- data/pkg/bundle-info-0.0.2.gem +0 -0
- data/pkg/bundle-info-0.0.3.gem +0 -0
- metadata +5 -4
data/README.md
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
Gives you the `bundle-info` command which reports the name, homepage and descriptions of all the gems in the current directories Gemfile. Useful when investigating unfamiliar codebases
|
4
4
|
|
5
|
+
# Usage
|
6
|
+
|
7
|
+
Install: `gem install bundle-info`
|
8
|
+
Use: `bundle-info` in some directory with a gemfile, like a rails app.
|
5
9
|
|
6
10
|
## Contributing
|
7
11
|
|
data/bundle-info.gemspec
CHANGED
@@ -8,9 +8,9 @@ Gem::Specification.new do |gem|
|
|
8
8
|
gem.version = Bundle::Info::VERSION
|
9
9
|
gem.authors = ["Sam Taylor"]
|
10
10
|
gem.email = ["sjltaylor@gmail.com"]
|
11
|
-
gem.description = %q{
|
11
|
+
gem.description = %q{List the name, summary and homepage of gems from Gemfile}
|
12
12
|
gem.summary = gem.description
|
13
|
-
gem.homepage = ""
|
13
|
+
gem.homepage = "https://github.com/sjltaylor/bundle-info"
|
14
14
|
|
15
15
|
gem.files = `git ls-files`.split($/)
|
16
16
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
data/lib/bundle-info/version.rb
CHANGED
data/pkg/bundle-info-0.0.2.gem
CHANGED
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bundle-info
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -11,7 +11,7 @@ bindir: bin
|
|
11
11
|
cert_chain: []
|
12
12
|
date: 2013-01-11 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
|
-
description:
|
14
|
+
description: List the name, summary and homepage of gems from Gemfile
|
15
15
|
email:
|
16
16
|
- sjltaylor@gmail.com
|
17
17
|
executables:
|
@@ -29,7 +29,8 @@ files:
|
|
29
29
|
- lib/bundle-info/version.rb
|
30
30
|
- pkg/bundle-info-0.0.1.gem
|
31
31
|
- pkg/bundle-info-0.0.2.gem
|
32
|
-
|
32
|
+
- pkg/bundle-info-0.0.3.gem
|
33
|
+
homepage: https://github.com/sjltaylor/bundle-info
|
33
34
|
licenses: []
|
34
35
|
post_install_message:
|
35
36
|
rdoc_options: []
|
@@ -52,5 +53,5 @@ rubyforge_project:
|
|
52
53
|
rubygems_version: 1.8.24
|
53
54
|
signing_key:
|
54
55
|
specification_version: 3
|
55
|
-
summary:
|
56
|
+
summary: List the name, summary and homepage of gems from Gemfile
|
56
57
|
test_files: []
|