hellgrid 0.3.5 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +4 -11
- data/README.md +1 -2
- data/hellgrid.gemspec +0 -1
- data/lib/hellgrid/cli.rb +1 -1
- data/lib/hellgrid/version.rb +1 -1
- data/spec/spec_helper.rb +0 -3
- metadata +6 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e0caa065abbaea139e9e998f08b984d34aa1ebfcf6a5295c09328c24a9df7e79
|
4
|
+
data.tar.gz: cdcaa19a6cab7bb2db6d8269752e63832dfc4bfec60b421c1859ec3810e3c918
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4914b6fffb95580d2419bb67e3553ac90516b3f4de72bc58dced496e518250e9e33de44e89f0c71cb7a6ec8e68224e3896ad5db76c9736c1b4cfbd27650851e4
|
7
|
+
data.tar.gz: c36915d2f8353171f1a158fead43c3ebde8e34ee8a1e77b4ead403e963c0c8a6b4b6d7b99a55efdbb01e64b9e1821e01bafa136f91c762e72877f59e1f134df9
|
data/Gemfile.lock
CHANGED
@@ -1,15 +1,13 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
hellgrid (0.
|
4
|
+
hellgrid (0.4.0)
|
5
5
|
bundler (>= 1.11.0, < 3)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
diff-lcs (1.
|
11
|
-
docile (1.3.5)
|
12
|
-
json (2.5.1)
|
10
|
+
diff-lcs (1.5.1)
|
13
11
|
rspec (3.8.0)
|
14
12
|
rspec-core (~> 3.8.0)
|
15
13
|
rspec-expectations (~> 3.8.0)
|
@@ -23,19 +21,14 @@ GEM
|
|
23
21
|
diff-lcs (>= 1.2.0, < 2.0)
|
24
22
|
rspec-support (~> 3.8.0)
|
25
23
|
rspec-support (3.8.3)
|
26
|
-
simplecov (0.16.1)
|
27
|
-
docile (~> 1.1)
|
28
|
-
json (>= 1.8, < 3)
|
29
|
-
simplecov-html (~> 0.10.0)
|
30
|
-
simplecov-html (0.10.2)
|
31
24
|
|
32
25
|
PLATFORMS
|
33
26
|
ruby
|
27
|
+
x86_64-linux
|
34
28
|
|
35
29
|
DEPENDENCIES
|
36
30
|
hellgrid!
|
37
31
|
rspec (~> 3.8.0)
|
38
|
-
simplecov (~> 0.16.0)
|
39
32
|
|
40
33
|
BUNDLED WITH
|
41
|
-
|
34
|
+
2.5.3
|
data/README.md
CHANGED
@@ -2,8 +2,7 @@
|
|
2
2
|
|
3
3
|
Utility which will output a table containing gem versions used across your projects.
|
4
4
|
|
5
|
-
[![Build
|
6
|
-
[![Maintainability](https://api.codeclimate.com/v1/badges/13deecf7ca1f69197cbe/maintainability)](https://codeclimate.com/github/FundingCircle/hellgrid/maintainability)
|
5
|
+
[![Build & Test](https://github.com/FundingCircle/hellgrid/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/FundingCircle/hellgrid/actions/workflows/build-and-test.yml)
|
7
6
|
|
8
7
|
## Install
|
9
8
|
|
data/hellgrid.gemspec
CHANGED
data/lib/hellgrid/cli.rb
CHANGED
@@ -18,7 +18,7 @@ module Hellgrid
|
|
18
18
|
matrix = Hellgrid::Matrix.new
|
19
19
|
|
20
20
|
Find.find(folder) do |path|
|
21
|
-
if File.directory?(path) && File.
|
21
|
+
if File.directory?(path) && File.exist?(File.join(path, 'Gemfile.lock'))
|
22
22
|
matrix.add_project(Hellgrid::Project.new(folder, path))
|
23
23
|
Find.prune unless recursive_search
|
24
24
|
end
|
data/lib/hellgrid/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hellgrid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Deyan Dobrinov
|
8
8
|
- Aleksandar Ivanov
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2024-03-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -45,20 +45,6 @@ dependencies:
|
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: 3.8.0
|
48
|
-
- !ruby/object:Gem::Dependency
|
49
|
-
name: simplecov
|
50
|
-
requirement: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: 0.16.0
|
55
|
-
type: :development
|
56
|
-
prerelease: false
|
57
|
-
version_requirements: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - "~>"
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: 0.16.0
|
62
48
|
description: Display gem versions used across your projects in a table
|
63
49
|
email:
|
64
50
|
- engineering+hellgrid@fundingcircle.com
|
@@ -88,7 +74,7 @@ homepage: https://github.com/FundingCircle/hellgrid
|
|
88
74
|
licenses:
|
89
75
|
- BSD-3-Clause
|
90
76
|
metadata: {}
|
91
|
-
post_install_message:
|
77
|
+
post_install_message:
|
92
78
|
rdoc_options: []
|
93
79
|
require_paths:
|
94
80
|
- lib
|
@@ -103,8 +89,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
103
89
|
- !ruby/object:Gem::Version
|
104
90
|
version: '0'
|
105
91
|
requirements: []
|
106
|
-
rubygems_version: 3.
|
107
|
-
signing_key:
|
92
|
+
rubygems_version: 3.5.3
|
93
|
+
signing_key:
|
108
94
|
specification_version: 4
|
109
95
|
summary: Gem version dependency matrix
|
110
96
|
test_files:
|