gemdiff 2.5.3 → 2.5.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -5
- data/lib/gemdiff/repo_finder.rb +1 -0
- data/lib/gemdiff/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b5d64420fe34ccb243d5cb8176931fea325297048d1838f67e3b55a9087a1a9
|
4
|
+
data.tar.gz: 7d7ac68ec217d6cee61fb4b131f61d9f91e8d4e5a5e0e6ca4dc2747ab6844b5c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 846453115c13ffa9302125c03d9b065fa9b8d17286446700640a3d38ec010aac68e5e46861908328a89d2e84c3926d4c7d85bcf2202918845d8beb8d72a131ec
|
7
|
+
data.tar.gz: d34c37826dc118117896c4520748cbaf9a2e804be784ffd69c2f7555e25bb8d130f030944d1ea5adfdc6436de89fe4bf878f2524c1e530fe48b009716deb5fe0
|
data/README.md
CHANGED
@@ -4,9 +4,13 @@
|
|
4
4
|
[![Build Status](https://travis-ci.org/teeparham/gemdiff.svg?branch=master)](https://travis-ci.org/teeparham/gemdiff)
|
5
5
|
|
6
6
|
`gemdiff` is a command-line tool to find source code for ruby gems.
|
7
|
-
|
8
|
-
|
9
|
-
`gemdiff`
|
7
|
+
It connects gem version management (rubygems + bundler) with source code (GitHub).
|
8
|
+
|
9
|
+
`gemdiff` provides commands to
|
10
|
+
* Find GitHub repositories for gems
|
11
|
+
* Open the compare view for two gem versions
|
12
|
+
* Inspect your bundle and list all the available updates
|
13
|
+
* Simplify your `git` workflow for updating gems
|
10
14
|
|
11
15
|
### Why?
|
12
16
|
|
@@ -14,13 +18,14 @@ You want to view differences between versions of gems before updating.
|
|
14
18
|
`gemdiff` does the source repository lookup, opens a compare view of commits on GitHub,
|
15
19
|
and simplifies your git workflow for a bundled project.
|
16
20
|
|
17
|
-
### How?
|
21
|
+
### How does it work?
|
18
22
|
|
19
23
|
`gemdiff` finds a repository by inspecting the local or remote gemspec, or searching GitHub if needed.
|
20
24
|
It uses bundler to list your outdated gems. For each outdated gem, it determines your currently used version and
|
21
25
|
the version you can update to, and builds a compare view URL with the old and new version tags.
|
22
26
|
|
23
|
-
Run `gemdiff update [gem]`
|
27
|
+
Run `gemdiff update [gem]` to update a gem (`bundle update [gem]`) and commit the change with a nice
|
28
|
+
commit message that includes the old and new versions and a compare URL with the changes.
|
24
29
|
|
25
30
|
## Install
|
26
31
|
|
data/lib/gemdiff/repo_finder.rb
CHANGED
data/lib/gemdiff/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gemdiff
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.5.
|
4
|
+
version: 2.5.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tee Parham
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-03-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: launchy
|
@@ -133,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
133
133
|
- !ruby/object:Gem::Version
|
134
134
|
version: '0'
|
135
135
|
requirements: []
|
136
|
-
rubygems_version: 3.0.
|
136
|
+
rubygems_version: 3.0.3
|
137
137
|
signing_key:
|
138
138
|
specification_version: 4
|
139
139
|
summary: Find source repositories for ruby gems. Open, compare, and update outdated
|