gemshine 0.1.2 → 0.1.3

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: d74f57beaaae1610da5b3238f92e17693fa7e14c
4
- data.tar.gz: 4e5e26b486f9342c118c40b552f6d6c4d44486ef
3
+ metadata.gz: 25bf278d9f7c5b0976b41233add9f68ebc420a0d
4
+ data.tar.gz: f55db9aab0136e8bad032dc901c15b5ee4f77429
5
5
  SHA512:
6
- metadata.gz: 2474c7421663957cd35ccc05f962f8b27ecc3b4993d18a4497ef76a9dad8d7116134511552588ff898432af0a024dd667f18a0de83380193ff3774c355f122c0
7
- data.tar.gz: f1032515367fe3c2ef871febc252bbdb04743a18f81a55ecb559dca0cd53f747580cda47ecbbe4e2e73f73bd22f1ef89e763e3b14cd2a5af648d5ba37aff566c
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 both the latest version and your Gemfile's version of each gem you have in that project.
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.
@@ -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 your current version of each gem in your Gemfile.}
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
 
@@ -1,3 +1,3 @@
1
1
  module Gemshine
2
- VERSION = '0.1.2'
2
+ VERSION = '0.1.3'
3
3
  end
@@ -12,7 +12,7 @@ class TestCLI < Minitest::Unit::TestCase
12
12
 
13
13
  assert_match /4 total gems/, out
14
14
 
15
- system 'rm -rf /tmp/gemshine'
15
+ system "rm -rf #{TEST_PATH}"
16
16
  end
17
17
 
18
18
  def test_version
@@ -1,5 +1,4 @@
1
1
  require 'minitest/autorun'
2
- require 'securerandom'
3
2
 
4
3
  module Gemshine
5
4
  module Test
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.2
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 your current version of each gem in your
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