busser-rspec_datadog 0.8.4 → 0.8.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -2
- data/lib/busser/rspec_datadog/version.rb +1 -1
- data/lib/busser/runner_plugin/rspec_datadog.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d838cb066d3cbe2c1e5afe2eb1eed9dec7d0e66eea103640c928fa18782ce657
|
4
|
+
data.tar.gz: 5dda1585883c758b2d977353920693c883c7cad41d9ef7a716c87e9eecf362fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 879a3e3ff8f2f3cd33f1dbe35516b0b9b8084a7ff80b9656f64f47562c7a56b1325a5ae6e24c2ce71304f93710909434752cb28a7dde83ee98a4f26ad4a79de8
|
7
|
+
data.tar.gz: 74187d85aee77a68f2fab1669f4c9b6d4d0c66186a7639285c4fdc1c670f37648117a21f96747920786a1f3cc53bc782614cb6b5dee94306e1152a1792698f92
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,16 @@
|
|
1
|
-
## 0.8.
|
1
|
+
## 0.8.7 / 2023-06-26
|
2
|
+
|
3
|
+
* Redirect ``bundle install`` stderr to stdout to fix [some](https://github.com/DataDog/busser-rspec-datadog/pull/5) windows kitchen issues.
|
4
|
+
|
5
|
+
## 0.8.5 / 2023-01-25
|
6
|
+
|
7
|
+
* Fix all paths, class names, following gem rename
|
8
|
+
|
9
|
+
## 0.8.1 (yanked) / 2023-01-25
|
2
10
|
|
3
11
|
* Fix runner_plugin file name following gem rename
|
4
12
|
|
5
|
-
## 0.8.0 / 2023-01-25
|
13
|
+
## 0.8.0 (yanked) / 2023-01-25
|
6
14
|
|
7
15
|
* Pin bundler version installed in postinstall to 2.3.26
|
8
16
|
|
@@ -45,7 +45,7 @@ class Busser::RunnerPlugin::RspecDatadog < Busser::RunnerPlugin::Base
|
|
45
45
|
banner('Bundle Installing..')
|
46
46
|
ENV['PATH'] = [ENV['PATH'], Gem.bindir, RbConfig::CONFIG['bindir']].join(File::PATH_SEPARATOR)
|
47
47
|
bundle_exec = "#{File.join(RbConfig::CONFIG['bindir'], 'ruby')} " +
|
48
|
-
"#{File.join(Gem.bindir, 'bundle')} install --gemfile #{gemfile_path}"
|
48
|
+
"#{File.join(Gem.bindir, 'bundle')} install --gemfile #{gemfile_path} 2>&1"
|
49
49
|
run("#{bundle_exec} --local || #{bundle_exec}")
|
50
50
|
end
|
51
51
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: busser-rspec_datadog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Jacob
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-06-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: busser
|
@@ -151,7 +151,7 @@ homepage: https://github.com/adamhjk/busser-rspec
|
|
151
151
|
licenses:
|
152
152
|
- Apache 2.0
|
153
153
|
metadata: {}
|
154
|
-
post_install_message:
|
154
|
+
post_install_message:
|
155
155
|
rdoc_options: []
|
156
156
|
require_paths:
|
157
157
|
- lib
|
@@ -166,8 +166,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
166
166
|
- !ruby/object:Gem::Version
|
167
167
|
version: '0'
|
168
168
|
requirements: []
|
169
|
-
rubygems_version: 3.
|
170
|
-
signing_key:
|
169
|
+
rubygems_version: 3.1.6
|
170
|
+
signing_key:
|
171
171
|
specification_version: 4
|
172
172
|
summary: A Busser runner plugin for RSpec
|
173
173
|
test_files:
|