gemshine 0.1.2 → 0.1.3
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/README.md +2 -2
- data/gemshine.gemspec +1 -1
- data/lib/gemshine/version.rb +1 -1
- data/test/integration/cli_test.rb +1 -1
- data/test/test_helper.rb +0 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25bf278d9f7c5b0976b41233add9f68ebc420a0d
|
4
|
+
data.tar.gz: f55db9aab0136e8bad032dc901c15b5ee4f77429
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dca0d8ecb13e13369ab4859b8b1b9120b6dd9c857f9634d88c2e835b92d81fe9e1c668a81e783b560b47002b25df1bcb11893d11318fac80d1892280a061f109
|
7
|
+
data.tar.gz: 88b07d2b854000a73d6b8eaea8edddefe11322d4f78ed7bb08846f0d2f6e93b72cb11b38dd7c8da94fa9249304df83a9a318d6bf7c7fb6afc721ce96a9a35e03
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
## What is gemshine?
|
2
2
|
|
3
|
-
Gemshine recursively searches a given path and reports back
|
3
|
+
Gemshine recursively searches a given path for all ruby projects and reports back a table showing the latest version of each gem you have installed in addition the version supplied by that project's Gemfile.
|
4
4
|
|
5
5
|
### What problem does it solve and why is it useful?
|
6
6
|
|
@@ -9,7 +9,7 @@ A typical rails project might have 40 or even 80 gems and keeping track of when
|
|
9
9
|
**To check for updates manually without gemshine** involves the following excruciating workflow:
|
10
10
|
|
11
11
|
1. Open a path in your editor.
|
12
|
-
2. Open a web browser and visit [rubygems.org](http://www.rubygems.org)
|
12
|
+
2. Open a web browser and visit [rubygems.org](http://www.rubygems.org).
|
13
13
|
3. Align them side by side.
|
14
14
|
4. Goto a project's Gemfile in your editor.
|
15
15
|
5. Search rubygems.org for the first gem in your list.
|
data/gemshine.gemspec
CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ['Nick Janetakis']
|
10
10
|
spec.email = ['nick.janetakis@gmail.com']
|
11
11
|
spec.summary = %q{Compare your ruby project's gem versions to their latest versions.}
|
12
|
-
spec.description = %q{Enter a path and gemshine will recursively explore every ruby project and show you both the latest version and
|
12
|
+
spec.description = %q{Enter a path and gemshine will recursively explore every ruby project and show you both the latest version and the current version of each gem in your Gemfile.}
|
13
13
|
spec.homepage = 'https://github.com/nickjj/gemshine'
|
14
14
|
spec.license = 'MIT'
|
15
15
|
|
data/lib/gemshine/version.rb
CHANGED
data/test/test_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gemshine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nick Janetakis
|
@@ -81,7 +81,7 @@ dependencies:
|
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '4.7'
|
83
83
|
description: Enter a path and gemshine will recursively explore every ruby project
|
84
|
-
and show you both the latest version and
|
84
|
+
and show you both the latest version and the current version of each gem in your
|
85
85
|
Gemfile.
|
86
86
|
email:
|
87
87
|
- nick.janetakis@gmail.com
|