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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2da2302642f13a01eea7f3ef6265726cb453f166c9b40b92100d602d0008a6c7
4
- data.tar.gz: 54ab90b86a2345670f86613e9feefe1f0176fa9ee5979c551261e8f5f93558f1
3
+ metadata.gz: 7b5d64420fe34ccb243d5cb8176931fea325297048d1838f67e3b55a9087a1a9
4
+ data.tar.gz: 7d7ac68ec217d6cee61fb4b131f61d9f91e8d4e5a5e0e6ca4dc2747ab6844b5c
5
5
  SHA512:
6
- metadata.gz: ada35e9551d3c57b8ee758e66fa7b3e9667ce4ef9d271d778bf4a4f6ecacd562e703fdf4207483f86c90d925dee059e4234413be567181578c7e3a9ab8478929
7
- data.tar.gz: db8b6a9251e16587c51113032fb0c56671a0f367663f0b43183280b7d71df071bce5ad52b5d7f3c44c3e6739c0478be4ccfe24bfb1bdcffdc3f3a9651a9cdb67
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
- You can compare source code differences between the current version of a gem in your bundle and
8
- the version of the gem that would be installed with `bundle update <gem>` (or any two versions of a gem).
9
- `gemdiff` connects gem version management (rubygems + bundler) with source code (GitHub).
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]` for a simple `bundle update [gem]` and commit workflow.
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
 
@@ -37,6 +37,7 @@ module Gemdiff
37
37
  gosu: "jlnr/gosu",
38
38
  grpc: "google/grpc",
39
39
  "guard-livereload": "guard/guard-livereload",
40
+ i18n: "ruby-i18n/i18n",
40
41
  "jquery-ujs": "rails/jquery-ujs",
41
42
  json: "flori/json",
42
43
  kaminari: "kaminari/kaminari",
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Gemdiff
4
- VERSION = "2.5.3"
4
+ VERSION = "2.5.4"
5
5
  end
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.3
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-02-07 00:00:00.000000000 Z
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.2
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