hellgrid 0.3.4 → 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +9 -9
- data/hellgrid.gemspec +1 -1
- data/lib/hellgrid/version.rb +1 -1
- data/spec/hellgrid_spec.rb +11 -3
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5065d2ad293d7b72ae198d3a4ab7af155b404b23cd85512ff85e50fd289d8ce5
|
4
|
+
data.tar.gz: a0e75613e9456775b4e864060bb0a7050f9ecc4e1f36a5f9130a9fd9e204322c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a48874b5df424ed602fdda5a602d3745fc703c64c260fb3ef1117e2cb0958a4600e526b79c459c82ac6579b89846a27a8d04883f6d09f9477a5133b69914017e
|
7
|
+
data.tar.gz: e9445c22f028d94cdd31b8a16715eba9eea35b8983f59f8ca2f482d211d1b2fac059e631939319a2b3275225e8c12caf372026cb4da26dd2650660826491b6b1
|
data/Gemfile.lock
CHANGED
@@ -1,28 +1,28 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
hellgrid (0.3.
|
5
|
-
bundler (>= 1.11.0, <
|
4
|
+
hellgrid (0.3.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.
|
12
|
-
json (2.1
|
10
|
+
diff-lcs (1.4.4)
|
11
|
+
docile (1.3.5)
|
12
|
+
json (2.5.1)
|
13
13
|
rspec (3.8.0)
|
14
14
|
rspec-core (~> 3.8.0)
|
15
15
|
rspec-expectations (~> 3.8.0)
|
16
16
|
rspec-mocks (~> 3.8.0)
|
17
|
-
rspec-core (3.8.
|
17
|
+
rspec-core (3.8.2)
|
18
18
|
rspec-support (~> 3.8.0)
|
19
|
-
rspec-expectations (3.8.
|
19
|
+
rspec-expectations (3.8.6)
|
20
20
|
diff-lcs (>= 1.2.0, < 2.0)
|
21
21
|
rspec-support (~> 3.8.0)
|
22
|
-
rspec-mocks (3.8.
|
22
|
+
rspec-mocks (3.8.2)
|
23
23
|
diff-lcs (>= 1.2.0, < 2.0)
|
24
24
|
rspec-support (~> 3.8.0)
|
25
|
-
rspec-support (3.8.
|
25
|
+
rspec-support (3.8.3)
|
26
26
|
simplecov (0.16.1)
|
27
27
|
docile (~> 1.1)
|
28
28
|
json (>= 1.8, < 3)
|
data/hellgrid.gemspec
CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|
19
19
|
s.homepage = 'https://github.com/FundingCircle/hellgrid'
|
20
20
|
s.license = 'BSD-3-Clause'
|
21
21
|
|
22
|
-
s.add_runtime_dependency 'bundler', '>= 1.11.0', '<
|
22
|
+
s.add_runtime_dependency 'bundler', '>= 1.11.0', '< 3'
|
23
23
|
|
24
24
|
s.add_development_dependency 'rspec', '~> 3.8.0'
|
25
25
|
s.add_development_dependency 'simplecov', '~> 0.16.0'
|
data/lib/hellgrid/version.rb
CHANGED
data/spec/hellgrid_spec.rb
CHANGED
@@ -1,6 +1,14 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
3
|
describe 'bin/hellgrid' do
|
4
|
+
def with_unbundled_env(&block)
|
5
|
+
if Bundler.respond_to?(:with_unbundled_env)
|
6
|
+
Bundler.with_unbundled_env(&block)
|
7
|
+
else
|
8
|
+
Bundler.with_clean_env(&block)
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
4
12
|
before do
|
5
13
|
delete_tmp_folder
|
6
14
|
|
@@ -88,7 +96,7 @@ TABLE
|
|
88
96
|
rspec-support | x | 3.0.4
|
89
97
|
TABLE
|
90
98
|
|
91
|
-
|
99
|
+
with_unbundled_env do
|
92
100
|
expect(`cd ~ && #{PROJECT_ROOT}/bin/hellgrid #{PROJECT_ROOT}/spec/tmp`).to eq(expected_result)
|
93
101
|
end
|
94
102
|
end
|
@@ -106,14 +114,14 @@ TABLE
|
|
106
114
|
rspec-support | x | 3.0.4
|
107
115
|
TABLE
|
108
116
|
|
109
|
-
|
117
|
+
with_unbundled_env do
|
110
118
|
expect(`cd #{PROJECT_ROOT}/spec/tmp && #{PROJECT_ROOT}/bin/hellgrid`).to eq(expected_result)
|
111
119
|
end
|
112
120
|
end
|
113
121
|
|
114
122
|
context 'when passing -r' do
|
115
123
|
it 'searches recursively within folders if you flag it to' do
|
116
|
-
|
124
|
+
with_unbundled_env do
|
117
125
|
expect(`cd #{PROJECT_ROOT} && #{PROJECT_ROOT}/bin/hellgrid -r`.lines.first).to(
|
118
126
|
include(
|
119
127
|
'hellgrid',
|
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.3.
|
4
|
+
version: 0.3.5
|
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: 2021-02-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -20,7 +20,7 @@ dependencies:
|
|
20
20
|
version: 1.11.0
|
21
21
|
- - "<"
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: '
|
23
|
+
version: '3'
|
24
24
|
type: :runtime
|
25
25
|
prerelease: false
|
26
26
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -30,7 +30,7 @@ dependencies:
|
|
30
30
|
version: 1.11.0
|
31
31
|
- - "<"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '3'
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
35
|
name: rspec
|
36
36
|
requirement: !ruby/object:Gem::Requirement
|
@@ -88,7 +88,7 @@ homepage: https://github.com/FundingCircle/hellgrid
|
|
88
88
|
licenses:
|
89
89
|
- BSD-3-Clause
|
90
90
|
metadata: {}
|
91
|
-
post_install_message:
|
91
|
+
post_install_message:
|
92
92
|
rdoc_options: []
|
93
93
|
require_paths:
|
94
94
|
- lib
|
@@ -103,8 +103,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
103
103
|
- !ruby/object:Gem::Version
|
104
104
|
version: '0'
|
105
105
|
requirements: []
|
106
|
-
rubygems_version: 3.0.
|
107
|
-
signing_key:
|
106
|
+
rubygems_version: 3.0.3
|
107
|
+
signing_key:
|
108
108
|
specification_version: 4
|
109
109
|
summary: Gem version dependency matrix
|
110
110
|
test_files:
|