hellgrid 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +18 -18
- data/README.md +2 -1
- data/hellgrid.gemspec +2 -1
- data/lib/hellgrid/version.rb +1 -1
- data/spec/spec_helper.rb +3 -0
- metadata +17 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d8a5b7497441f250dec0d427d6cadc946ef12a097f9a901145ab2fe9264accf0
|
4
|
+
data.tar.gz: 36b1be3da0f23b820aa8e391670041f307a7a3dd94b1f80209ec611a05ad3bfa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '062833233f990a2ccc5fbf3f3cdec57f6f8479243e20d23366ec3ed4211e8521046efc93f47b613a1efd9bb5c730a63e980687e997cf83f2113af5cc7639050b'
|
7
|
+
data.tar.gz: c6bb0bb49c0717b7b08dc3800710a7570d9b2f8feeed90431e476f64086680997e003fe9ae8cb0a46039d211c380156b0257f8b42a16a5cd11fc96bf604de5c7
|
data/Gemfile.lock
CHANGED
@@ -1,30 +1,30 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
hellgrid (0.3.
|
4
|
+
hellgrid (0.3.2)
|
5
5
|
bundler (>= 1.11.0, < 1.17)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
10
|
diff-lcs (1.3)
|
11
|
-
docile (1.1
|
11
|
+
docile (1.3.1)
|
12
12
|
json (2.1.0)
|
13
|
-
rspec (3.
|
14
|
-
rspec-core (~> 3.
|
15
|
-
rspec-expectations (~> 3.
|
16
|
-
rspec-mocks (~> 3.
|
17
|
-
rspec-core (3.
|
18
|
-
rspec-support (~> 3.
|
19
|
-
rspec-expectations (3.
|
13
|
+
rspec (3.8.0)
|
14
|
+
rspec-core (~> 3.8.0)
|
15
|
+
rspec-expectations (~> 3.8.0)
|
16
|
+
rspec-mocks (~> 3.8.0)
|
17
|
+
rspec-core (3.8.0)
|
18
|
+
rspec-support (~> 3.8.0)
|
19
|
+
rspec-expectations (3.8.0)
|
20
20
|
diff-lcs (>= 1.2.0, < 2.0)
|
21
|
-
rspec-support (~> 3.
|
22
|
-
rspec-mocks (3.
|
21
|
+
rspec-support (~> 3.8.0)
|
22
|
+
rspec-mocks (3.8.0)
|
23
23
|
diff-lcs (>= 1.2.0, < 2.0)
|
24
|
-
rspec-support (~> 3.
|
25
|
-
rspec-support (3.
|
26
|
-
simplecov (0.
|
27
|
-
docile (~> 1.1
|
24
|
+
rspec-support (~> 3.8.0)
|
25
|
+
rspec-support (3.8.0)
|
26
|
+
simplecov (0.16.1)
|
27
|
+
docile (~> 1.1)
|
28
28
|
json (>= 1.8, < 3)
|
29
29
|
simplecov-html (~> 0.10.0)
|
30
30
|
simplecov-html (0.10.2)
|
@@ -34,8 +34,8 @@ PLATFORMS
|
|
34
34
|
|
35
35
|
DEPENDENCIES
|
36
36
|
hellgrid!
|
37
|
-
rspec (~> 3.
|
38
|
-
simplecov (~> 0.
|
37
|
+
rspec (~> 3.8.0)
|
38
|
+
simplecov (~> 0.16.0)
|
39
39
|
|
40
40
|
BUNDLED WITH
|
41
|
-
1.16.
|
41
|
+
1.16.4
|
data/README.md
CHANGED
@@ -2,7 +2,8 @@
|
|
2
2
|
|
3
3
|
Utility which will output a table containing gem versions used across your projects.
|
4
4
|
|
5
|
-
![Build Status](https://circleci.com/gh/FundingCircle/hellgrid.svg?style=
|
5
|
+
[![Build Status`](https://circleci.com/gh/FundingCircle/hellgrid.svg?style=svg)](https://circleci.com/gh/FundingCircle/hellgrid)
|
6
|
+
[![Maintainability](https://api.codeclimate.com/v1/badges/13deecf7ca1f69197cbe/maintainability)](https://codeclimate.com/github/FundingCircle/hellgrid/maintainability)
|
6
7
|
|
7
8
|
## Install
|
8
9
|
|
data/hellgrid.gemspec
CHANGED
@@ -21,5 +21,6 @@ Gem::Specification.new do |s|
|
|
21
21
|
|
22
22
|
s.add_runtime_dependency 'bundler', ['>= 1.11.0', '< 1.17']
|
23
23
|
|
24
|
-
s.add_development_dependency 'rspec', '~> 3.
|
24
|
+
s.add_development_dependency 'rspec', '~> 3.8.0'
|
25
|
+
s.add_development_dependency 'simplecov', '~> 0.16.0'
|
25
26
|
end
|
data/lib/hellgrid/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hellgrid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Deyan Dobrinov
|
@@ -37,20 +37,28 @@ dependencies:
|
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
41
|
-
- - ">="
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
version: 3.4.0
|
40
|
+
version: 3.8.0
|
44
41
|
type: :development
|
45
42
|
prerelease: false
|
46
43
|
version_requirements: !ruby/object:Gem::Requirement
|
47
44
|
requirements:
|
48
45
|
- - "~>"
|
49
46
|
- !ruby/object:Gem::Version
|
50
|
-
version:
|
51
|
-
|
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
|
+
- - "~>"
|
52
60
|
- !ruby/object:Gem::Version
|
53
|
-
version:
|
61
|
+
version: 0.16.0
|
54
62
|
description:
|
55
63
|
email:
|
56
64
|
- engineering+hellgrid@fundingcircle.com
|
@@ -96,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
96
104
|
version: '0'
|
97
105
|
requirements: []
|
98
106
|
rubyforge_project:
|
99
|
-
rubygems_version: 2.7.
|
107
|
+
rubygems_version: 2.7.7
|
100
108
|
signing_key:
|
101
109
|
specification_version: 4
|
102
110
|
summary: Gem version dependency matrix
|