hellgrid 0.3.1 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5cdf916cc1b8a6b4aeed6730b2ab7d856bd387ba8377a144ee8edb836e0adaa0
4
- data.tar.gz: 05ffd253f441d4917ff32f272c849975d94454048cef4c1920f0acd022207468
3
+ metadata.gz: d8a5b7497441f250dec0d427d6cadc946ef12a097f9a901145ab2fe9264accf0
4
+ data.tar.gz: 36b1be3da0f23b820aa8e391670041f307a7a3dd94b1f80209ec611a05ad3bfa
5
5
  SHA512:
6
- metadata.gz: a08a4f854e758b495248e9a67979aec90e0bf4b1c9b4ced939d469de86ca68e835a98378dbbedf1a5a28479bf7204a5776df1092c7dcbd7d45caa047cad6091d
7
- data.tar.gz: ab8505e56b86ad4973515b715be12273e6af148470627477ce012ed1387cf8f88af8962e5eeae0eae03f9ee801a5d229857a41bf2f04a6cb9a5dbe8de4fd2f10
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.1)
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.5)
11
+ docile (1.3.1)
12
12
  json (2.1.0)
13
- rspec (3.7.0)
14
- rspec-core (~> 3.7.0)
15
- rspec-expectations (~> 3.7.0)
16
- rspec-mocks (~> 3.7.0)
17
- rspec-core (3.7.1)
18
- rspec-support (~> 3.7.0)
19
- rspec-expectations (3.7.0)
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.7.0)
22
- rspec-mocks (3.7.0)
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.7.0)
25
- rspec-support (3.7.1)
26
- simplecov (0.15.1)
27
- docile (~> 1.1.0)
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.7.0)
38
- simplecov (~> 0.15.1)
37
+ rspec (~> 3.8.0)
38
+ simplecov (~> 0.16.0)
39
39
 
40
40
  BUNDLED WITH
41
- 1.16.1
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=shield&circle-token=:circle-token)
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.4', '>= 3.4.0'
24
+ s.add_development_dependency 'rspec', '~> 3.8.0'
25
+ s.add_development_dependency 'simplecov', '~> 0.16.0'
25
26
  end
@@ -1,3 +1,3 @@
1
1
  module Hellgrid
2
- VERSION = '0.3.1'
2
+ VERSION = '0.3.2'
3
3
  end
data/spec/spec_helper.rb CHANGED
@@ -1,3 +1,6 @@
1
+ require 'simplecov'
2
+ SimpleCov.start
3
+
1
4
  require 'fileutils'
2
5
  require 'hellgrid'
3
6
  require 'hellgrid/project'
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.1
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: '3.4'
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: '3.4'
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: 3.4.0
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.3
107
+ rubygems_version: 2.7.7
100
108
  signing_key:
101
109
  specification_version: 4
102
110
  summary: Gem version dependency matrix