formatted-gem-updates 0.0.1 → 0.0.2
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 +1 -11
- data/exe/formatted-gem-updates +3 -1
- data/lib/formatted_gem_updates/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 212a9014652b7d59bc12618803e9fa81f67a6277
|
|
4
|
+
data.tar.gz: 6f9092eb32f04b6820db7ad7611bd764b1978847
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f31d480596d0afeaffcacc0028234f8a9b2cdb906d811d802509083c947b7796139d45d6c11f1008a75d7508204aac03ab2f3ca4e6b420b370226b0a27109e43
|
|
7
|
+
data.tar.gz: e8e4709eb0a0f2b3d9e93c97c562f271b72b69b60c1795e4f9127e7d4975856031a220fc635b472cbe7dc4d5a05bc1957757778c617676ebe5ad3a21dd07ecd8
|
data/README.md
CHANGED
|
@@ -23,17 +23,7 @@ multi_json 1.12.1
|
|
|
23
23
|
|
|
24
24
|
## Installation
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
```ruby
|
|
29
|
-
gem 'formatted-gem-updates'
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
And then execute:
|
|
33
|
-
|
|
34
|
-
$ bundle
|
|
35
|
-
|
|
36
|
-
Or install it yourself as:
|
|
26
|
+
Install it standalone by running:
|
|
37
27
|
|
|
38
28
|
$ gem install formatted-gem-updates
|
|
39
29
|
|
data/exe/formatted-gem-updates
CHANGED
|
@@ -5,11 +5,13 @@ exit 1 unless $?.success?
|
|
|
5
5
|
|
|
6
6
|
Dir.chdir GIT_ROOT
|
|
7
7
|
|
|
8
|
+
current_ref = `git rev-parse --abbrev-ref HEAD`.strip
|
|
9
|
+
|
|
8
10
|
system("git checkout head^")
|
|
9
11
|
|
|
10
12
|
old_list = `bundle list`
|
|
11
13
|
|
|
12
|
-
system("git checkout
|
|
14
|
+
system("git checkout #{current_ref}")
|
|
13
15
|
|
|
14
16
|
new_list = `bundle list`
|
|
15
17
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: formatted-gem-updates
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Travis Grathwell
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-08-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -94,9 +94,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
94
94
|
version: '0'
|
|
95
95
|
requirements: []
|
|
96
96
|
rubyforge_project:
|
|
97
|
-
rubygems_version: 2.5
|
|
97
|
+
rubygems_version: 2.4.5
|
|
98
98
|
signing_key:
|
|
99
99
|
specification_version: 4
|
|
100
100
|
summary: Prints the Gemfile.lock differences between the current git commit and previous
|
|
101
101
|
in a handy table.
|
|
102
102
|
test_files: []
|
|
103
|
+
has_rdoc:
|