beaker-vagrant 1.1.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/Rakefile +1 -8
- data/beaker-vagrant.gemspec +1 -1
- data/lib/beaker-vagrant/version.rb +1 -1
- metadata +11 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ad3e004b7c1a2dd497d2e1e6a2ad657888f9197349385c458d359c034cca393f
|
4
|
+
data.tar.gz: 90307a775cd0d87ab5c45a46906379610358009794ef5b092b9b4b428d4e4a8f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3bf0e47364ea0fff8c2f6b14bd5f1a0f6829b3426861fcac23c27deb23b829e5bf499d2d1152fc27629c3b62a2628bdd9d243cf6768e88c832143817abec9d87
|
7
|
+
data.tar.gz: 4d172b71383ef108ecd3026d2f6374c765e4f4c3aca53c5f4097769575cc7a1339fed1ad7dbb64ec77b758722beb86d5f9022619ca42cd37e4500eeff2180a2f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [1.2.0](https://github.com/voxpupuli/beaker-vagrant/tree/1.2.0) (2023-04-28)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-vagrant/compare/1.1.0...1.2.0)
|
6
|
+
|
7
|
+
**Implemented enhancements:**
|
8
|
+
|
9
|
+
- Allow beaker 4 again [\#75](https://github.com/voxpupuli/beaker-vagrant/pull/75) ([ekohl](https://github.com/ekohl))
|
10
|
+
|
11
|
+
**Merged pull requests:**
|
12
|
+
|
13
|
+
- Switch to voxpupuli-rubocop + Rake task from voxpupuli-rubocop [\#69](https://github.com/voxpupuli/beaker-vagrant/pull/69) ([bastelfreak](https://github.com/bastelfreak))
|
14
|
+
|
3
15
|
## [1.1.0](https://github.com/voxpupuli/beaker-vagrant/tree/1.1.0) (2023-04-28)
|
4
16
|
|
5
17
|
[Full Changelog](https://github.com/voxpupuli/beaker-vagrant/compare/1.0.0...1.1.0)
|
data/Rakefile
CHANGED
@@ -48,16 +48,9 @@ task test: 'test:spec'
|
|
48
48
|
task default: :test
|
49
49
|
|
50
50
|
begin
|
51
|
-
require 'rubocop/
|
51
|
+
require 'voxpupuli/rubocop/rake'
|
52
52
|
rescue LoadError
|
53
53
|
# RuboCop is an optional group
|
54
|
-
else
|
55
|
-
RuboCop::RakeTask.new(:rubocop) do |task|
|
56
|
-
# These make the rubocop experience maybe slightly less terrible
|
57
|
-
task.options = ['--display-cop-names', '--display-style-guide', '--extra-details']
|
58
|
-
# Use Rubocop's Github Actions formatter if possible
|
59
|
-
task.formatters << 'github' if ENV['GITHUB_ACTIONS'] == 'true'
|
60
|
-
end
|
61
54
|
end
|
62
55
|
|
63
56
|
begin
|
data/beaker-vagrant.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beaker-vagrant
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vox Pupuli
|
@@ -107,16 +107,22 @@ dependencies:
|
|
107
107
|
name: beaker
|
108
108
|
requirement: !ruby/object:Gem::Requirement
|
109
109
|
requirements:
|
110
|
-
- - "
|
110
|
+
- - ">="
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: '4'
|
113
|
+
- - "<"
|
111
114
|
- !ruby/object:Gem::Version
|
112
|
-
version: '
|
115
|
+
version: '6'
|
113
116
|
type: :runtime
|
114
117
|
prerelease: false
|
115
118
|
version_requirements: !ruby/object:Gem::Requirement
|
116
119
|
requirements:
|
117
|
-
- - "
|
120
|
+
- - ">="
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: '4'
|
123
|
+
- - "<"
|
118
124
|
- !ruby/object:Gem::Version
|
119
|
-
version: '
|
125
|
+
version: '6'
|
120
126
|
description: For use for the Beaker acceptance testing tool
|
121
127
|
email: voxpupuli@groups.io
|
122
128
|
executables:
|