beaker-google 1.1.0 → 1.2.0
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 +4 -4
- data/.github/workflows/ci.yml +23 -13
- data/.github/workflows/release.yml +1 -1
- data/.gitignore +1 -0
- data/.rubocop.yml +2 -518
- data/.simplecov +2 -0
- data/CHANGELOG.md +18 -1
- data/Gemfile +5 -2
- data/Rakefile +16 -6
- data/beaker-google.gemspec +20 -19
- data/bin/beaker-google +1 -0
- data/lib/beaker/hypervisor/google.rb +5 -1
- data/lib/beaker/hypervisor/google_compute.rb +51 -21
- data/lib/beaker/hypervisor/google_compute_helper.rb +589 -581
- data/lib/beaker-google/version.rb +3 -1
- metadata +53 -33
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 3ffc4ea5302c98fad23ea68232a5903995e0cc420be84ce68910846ef387ea66
         | 
| 4 | 
            +
              data.tar.gz: 1d0a898f54cca4d1033bbbea4ebf1ec30ed9b78f304e853edecbc4b299874fde
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 8fbdf6e207d365a19348ecba021d169a6da1ac9daf8bdf76257c7bb74de293e19e070acf5071954af0b7db8c2ae5e65af35fe8c2719221741206d9a99fde6a36
         | 
| 7 | 
            +
              data.tar.gz: cc44c5be51e602b046338e878b59e4582ae14233c105b2de9fc5115f6d6c935830e845d1dae8038ae4bb4179e879d1481d22f294dc4d701ca66d5074c476fdd3
         | 
    
        data/.github/workflows/ci.yml
    CHANGED
    
    | @@ -7,18 +7,17 @@ env: | |
| 7 7 | 
             
              BUNDLE_WITHOUT: release
         | 
| 8 8 |  | 
| 9 9 | 
             
            jobs:
         | 
| 10 | 
            -
               | 
| 11 | 
            -
             | 
| 12 | 
            -
             | 
| 13 | 
            -
             | 
| 14 | 
            -
             | 
| 15 | 
            -
             | 
| 16 | 
            -
             | 
| 17 | 
            -
             | 
| 18 | 
            -
             | 
| 19 | 
            -
             | 
| 20 | 
            -
             | 
| 21 | 
            -
              #       run: bundle exec rake rubocop
         | 
| 10 | 
            +
              rubocop:
         | 
| 11 | 
            +
                runs-on: ubuntu-latest
         | 
| 12 | 
            +
                steps:
         | 
| 13 | 
            +
                  - uses: actions/checkout@v4
         | 
| 14 | 
            +
                  - name: Install Ruby 3.3
         | 
| 15 | 
            +
                    uses: ruby/setup-ruby@v1
         | 
| 16 | 
            +
                    with:
         | 
| 17 | 
            +
                      ruby-version: "3.3"
         | 
| 18 | 
            +
                      bundler-cache: true
         | 
| 19 | 
            +
                  - name: Run rubocop
         | 
| 20 | 
            +
                    run: bundle exec rake rubocop
         | 
| 22 21 | 
             
              test:
         | 
| 23 22 | 
             
                runs-on: ubuntu-latest
         | 
| 24 23 | 
             
                strategy:
         | 
| @@ -29,6 +28,8 @@ jobs: | |
| 29 28 | 
             
                      - ruby: "3.0"
         | 
| 30 29 | 
             
                      - ruby: "3.1"
         | 
| 31 30 | 
             
                        coverage: "yes"
         | 
| 31 | 
            +
                      - ruby: "3.2"
         | 
| 32 | 
            +
                      - ruby: "3.3"
         | 
| 32 33 | 
             
                env:
         | 
| 33 34 | 
             
                  COVERAGE: ${{ matrix.coverage }}
         | 
| 34 35 | 
             
                name: Ruby ${{ matrix.ruby }}
         | 
| @@ -40,7 +41,16 @@ jobs: | |
| 40 41 | 
             
                      ruby-version: ${{ matrix.ruby }}
         | 
| 41 42 | 
             
                      bundler-cache: true
         | 
| 42 43 | 
             
                  - name: Verify gem builds
         | 
| 43 | 
            -
                    run: gem build *.gemspec
         | 
| 44 | 
            +
                    run: gem build --strict --verbose *.gemspec
         | 
| 44 45 | 
             
                  # Currently no tests are defined in this gem
         | 
| 45 46 | 
             
                  # - name: Run spec tests
         | 
| 46 47 | 
             
                  #   run: bundle exec rake
         | 
| 48 | 
            +
             | 
| 49 | 
            +
              tests:
         | 
| 50 | 
            +
                needs:
         | 
| 51 | 
            +
                  - rubocop
         | 
| 52 | 
            +
                  - test
         | 
| 53 | 
            +
                runs-on: ubuntu-latest
         | 
| 54 | 
            +
                name: Test suite
         | 
| 55 | 
            +
                steps:
         | 
| 56 | 
            +
                  - run: echo Test suite completed
         | 
    
        data/.gitignore
    CHANGED
    
    
    
        data/.rubocop.yml
    CHANGED
    
    | @@ -1,519 +1,3 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 | 
            -
             | 
| 3 | 
            -
            - rubocop | 
| 4 | 
            -
            - rubocop-rspec
         | 
| 5 | 
            -
            AllCops:
         | 
| 6 | 
            -
              DisplayCopNames: true
         | 
| 7 | 
            -
              TargetRubyVersion: '2.7'
         | 
| 8 | 
            -
              Include:
         | 
| 9 | 
            -
              - "**/*.rb"
         | 
| 10 | 
            -
              Exclude:
         | 
| 11 | 
            -
              - bin/*
         | 
| 12 | 
            -
              - ".vendor/**/*"
         | 
| 13 | 
            -
              - "**/Gemfile"
         | 
| 14 | 
            -
              - "**/Rakefile"
         | 
| 15 | 
            -
              - pkg/**/*
         | 
| 16 | 
            -
              - spec/fixtures/**/*
         | 
| 17 | 
            -
              - vendor/**/*
         | 
| 18 | 
            -
              - "**/Puppetfile"
         | 
| 19 | 
            -
              - "**/Vagrantfile"
         | 
| 20 | 
            -
              - "**/Guardfile"
         | 
| 21 | 
            -
            Layout/LineLength:
         | 
| 22 | 
            -
              Description: People have wide screens, use them.
         | 
| 23 | 
            -
              Max: 200
         | 
| 24 | 
            -
            RSpec/BeforeAfterAll:
         | 
| 25 | 
            -
              Description: Beware of using after(:all) as it may cause state to leak between tests.
         | 
| 26 | 
            -
                A necessary evil in acceptance testing.
         | 
| 27 | 
            -
              Exclude:
         | 
| 28 | 
            -
              - spec/acceptance/**/*.rb
         | 
| 29 | 
            -
            RSpec/HookArgument:
         | 
| 30 | 
            -
              Description: Prefer explicit :each argument, matching existing module's style
         | 
| 31 | 
            -
              EnforcedStyle: each
         | 
| 32 | 
            -
            RSpec/DescribeSymbol:
         | 
| 33 | 
            -
              Exclude:
         | 
| 34 | 
            -
              - spec/unit/facter/**/*.rb
         | 
| 35 | 
            -
            Style/BlockDelimiters:
         | 
| 36 | 
            -
              Description: Prefer braces for chaining. Mostly an aesthetical choice. Better to
         | 
| 37 | 
            -
                be consistent then.
         | 
| 38 | 
            -
              EnforcedStyle: braces_for_chaining
         | 
| 39 | 
            -
            Style/ClassAndModuleChildren:
         | 
| 40 | 
            -
              Description: Compact style reduces the required amount of indentation.
         | 
| 41 | 
            -
              EnforcedStyle: compact
         | 
| 42 | 
            -
            Style/EmptyElse:
         | 
| 43 | 
            -
              Description: Enforce against empty else clauses, but allow `nil` for clarity.
         | 
| 44 | 
            -
              EnforcedStyle: empty
         | 
| 45 | 
            -
            Style/FormatString:
         | 
| 46 | 
            -
              Description: Following the main puppet project's style, prefer the % format format.
         | 
| 47 | 
            -
              EnforcedStyle: percent
         | 
| 48 | 
            -
            Style/FormatStringToken:
         | 
| 49 | 
            -
              Description: Following the main puppet project's style, prefer the simpler template
         | 
| 50 | 
            -
                tokens over annotated ones.
         | 
| 51 | 
            -
              EnforcedStyle: template
         | 
| 52 | 
            -
            Style/Lambda:
         | 
| 53 | 
            -
              Description: Prefer the keyword for easier discoverability.
         | 
| 54 | 
            -
              EnforcedStyle: literal
         | 
| 55 | 
            -
            Style/RegexpLiteral:
         | 
| 56 | 
            -
              Description: Community preference. See https://github.com/voxpupuli/modulesync_config/issues/168
         | 
| 57 | 
            -
              EnforcedStyle: percent_r
         | 
| 58 | 
            -
            Style/TernaryParentheses:
         | 
| 59 | 
            -
              Description: Checks for use of parentheses around ternary conditions. Enforce parentheses
         | 
| 60 | 
            -
                on complex expressions for better readability, but seriously consider breaking
         | 
| 61 | 
            -
                it up.
         | 
| 62 | 
            -
              EnforcedStyle: require_parentheses_when_complex
         | 
| 63 | 
            -
            Style/TrailingCommaInArguments:
         | 
| 64 | 
            -
              Description: Prefer always trailing comma on multiline argument lists. This makes
         | 
| 65 | 
            -
                diffs, and re-ordering nicer.
         | 
| 66 | 
            -
              EnforcedStyleForMultiline: comma
         | 
| 67 | 
            -
            Style/TrailingCommaInArrayLiteral:
         | 
| 68 | 
            -
              Description: Prefer always trailing comma on multiline literals. This makes diffs,
         | 
| 69 | 
            -
                and re-ordering nicer.
         | 
| 70 | 
            -
              EnforcedStyleForMultiline: comma
         | 
| 71 | 
            -
            Style/SymbolArray:
         | 
| 72 | 
            -
              Description: Using percent style obscures symbolic intent of array's contents.
         | 
| 73 | 
            -
              EnforcedStyle: brackets
         | 
| 74 | 
            -
            RSpec/MessageSpies:
         | 
| 75 | 
            -
              EnforcedStyle: receive
         | 
| 76 | 
            -
            Style/Documentation:
         | 
| 77 | 
            -
              Exclude:
         | 
| 78 | 
            -
              - lib/puppet/parser/functions/**/*
         | 
| 79 | 
            -
              - spec/**/*
         | 
| 80 | 
            -
            Style/WordArray:
         | 
| 81 | 
            -
              EnforcedStyle: brackets
         | 
| 82 | 
            -
            Performance/AncestorsInclude:
         | 
| 83 | 
            -
              Enabled: true
         | 
| 84 | 
            -
            Performance/BigDecimalWithNumericArgument:
         | 
| 85 | 
            -
              Enabled: true
         | 
| 86 | 
            -
            Performance/BlockGivenWithExplicitBlock:
         | 
| 87 | 
            -
              Enabled: true
         | 
| 88 | 
            -
            Performance/CaseWhenSplat:
         | 
| 89 | 
            -
              Enabled: true
         | 
| 90 | 
            -
            Performance/ConstantRegexp:
         | 
| 91 | 
            -
              Enabled: true
         | 
| 92 | 
            -
            Performance/MethodObjectAsBlock:
         | 
| 93 | 
            -
              Enabled: true
         | 
| 94 | 
            -
            Performance/RedundantSortBlock:
         | 
| 95 | 
            -
              Enabled: true
         | 
| 96 | 
            -
            Performance/RedundantStringChars:
         | 
| 97 | 
            -
              Enabled: true
         | 
| 98 | 
            -
            Performance/ReverseFirst:
         | 
| 99 | 
            -
              Enabled: true
         | 
| 100 | 
            -
            Performance/SortReverse:
         | 
| 101 | 
            -
              Enabled: true
         | 
| 102 | 
            -
            Performance/Squeeze:
         | 
| 103 | 
            -
              Enabled: true
         | 
| 104 | 
            -
            Performance/StringInclude:
         | 
| 105 | 
            -
              Enabled: true
         | 
| 106 | 
            -
            Performance/Sum:
         | 
| 107 | 
            -
              Enabled: true
         | 
| 108 | 
            -
            Style/CollectionMethods:
         | 
| 109 | 
            -
              Enabled: true
         | 
| 110 | 
            -
            Style/MethodCalledOnDoEndBlock:
         | 
| 111 | 
            -
              Enabled: true
         | 
| 112 | 
            -
            Style/StringMethods:
         | 
| 113 | 
            -
              Enabled: true
         | 
| 114 | 
            -
            Bundler/InsecureProtocolSource:
         | 
| 115 | 
            -
              Enabled: false
         | 
| 116 | 
            -
            Gemspec/DuplicatedAssignment:
         | 
| 117 | 
            -
              Enabled: false
         | 
| 118 | 
            -
            Gemspec/OrderedDependencies:
         | 
| 119 | 
            -
              Enabled: false
         | 
| 120 | 
            -
            Gemspec/RequiredRubyVersion:
         | 
| 121 | 
            -
              Enabled: false
         | 
| 122 | 
            -
            Gemspec/RubyVersionGlobalsUsage:
         | 
| 123 | 
            -
              Enabled: false
         | 
| 124 | 
            -
            Layout/ArgumentAlignment:
         | 
| 125 | 
            -
              Enabled: false
         | 
| 126 | 
            -
            Layout/BeginEndAlignment:
         | 
| 127 | 
            -
              Enabled: false
         | 
| 128 | 
            -
            Layout/ClosingHeredocIndentation:
         | 
| 129 | 
            -
              Enabled: false
         | 
| 130 | 
            -
            Layout/EmptyComment:
         | 
| 131 | 
            -
              Enabled: false
         | 
| 132 | 
            -
            Layout/EmptyLineAfterGuardClause:
         | 
| 133 | 
            -
              Enabled: false
         | 
| 134 | 
            -
            Layout/EmptyLinesAroundArguments:
         | 
| 135 | 
            -
              Enabled: false
         | 
| 136 | 
            -
            Layout/EmptyLinesAroundAttributeAccessor:
         | 
| 137 | 
            -
              Enabled: false
         | 
| 138 | 
            -
            Layout/EndOfLine:
         | 
| 139 | 
            -
              Enabled: false
         | 
| 140 | 
            -
            Layout/FirstArgumentIndentation:
         | 
| 141 | 
            -
              Enabled: false
         | 
| 142 | 
            -
            Layout/HashAlignment:
         | 
| 143 | 
            -
              Enabled: false
         | 
| 144 | 
            -
            Layout/HeredocIndentation:
         | 
| 145 | 
            -
              Enabled: false
         | 
| 146 | 
            -
            Layout/LeadingEmptyLines:
         | 
| 147 | 
            -
              Enabled: false
         | 
| 148 | 
            -
            Layout/SpaceAroundMethodCallOperator:
         | 
| 149 | 
            -
              Enabled: false
         | 
| 150 | 
            -
            Layout/SpaceInsideArrayLiteralBrackets:
         | 
| 151 | 
            -
              Enabled: false
         | 
| 152 | 
            -
            Layout/SpaceInsideReferenceBrackets:
         | 
| 153 | 
            -
              Enabled: false
         | 
| 154 | 
            -
            Lint/BigDecimalNew:
         | 
| 155 | 
            -
              Enabled: false
         | 
| 156 | 
            -
            Lint/BooleanSymbol:
         | 
| 157 | 
            -
              Enabled: false
         | 
| 158 | 
            -
            Lint/ConstantDefinitionInBlock:
         | 
| 159 | 
            -
              Enabled: false
         | 
| 160 | 
            -
            Lint/DeprecatedOpenSSLConstant:
         | 
| 161 | 
            -
              Enabled: false
         | 
| 162 | 
            -
            Lint/DisjunctiveAssignmentInConstructor:
         | 
| 163 | 
            -
              Enabled: false
         | 
| 164 | 
            -
            Lint/DuplicateElsifCondition:
         | 
| 165 | 
            -
              Enabled: false
         | 
| 166 | 
            -
            Lint/DuplicateRequire:
         | 
| 167 | 
            -
              Enabled: false
         | 
| 168 | 
            -
            Lint/DuplicateRescueException:
         | 
| 169 | 
            -
              Enabled: false
         | 
| 170 | 
            -
            Lint/EmptyConditionalBody:
         | 
| 171 | 
            -
              Enabled: false
         | 
| 172 | 
            -
            Lint/EmptyFile:
         | 
| 173 | 
            -
              Enabled: false
         | 
| 174 | 
            -
            Lint/ErbNewArguments:
         | 
| 175 | 
            -
              Enabled: false
         | 
| 176 | 
            -
            Lint/FloatComparison:
         | 
| 177 | 
            -
              Enabled: false
         | 
| 178 | 
            -
            Lint/HashCompareByIdentity:
         | 
| 179 | 
            -
              Enabled: false
         | 
| 180 | 
            -
            Lint/IdentityComparison:
         | 
| 181 | 
            -
              Enabled: false
         | 
| 182 | 
            -
            Lint/InterpolationCheck:
         | 
| 183 | 
            -
              Enabled: false
         | 
| 184 | 
            -
            Lint/MissingCopEnableDirective:
         | 
| 185 | 
            -
              Enabled: false
         | 
| 186 | 
            -
            Lint/MixedRegexpCaptureTypes:
         | 
| 187 | 
            -
              Enabled: false
         | 
| 188 | 
            -
            Lint/NestedPercentLiteral:
         | 
| 189 | 
            -
              Enabled: false
         | 
| 190 | 
            -
            Lint/NonDeterministicRequireOrder:
         | 
| 191 | 
            -
              Enabled: false
         | 
| 192 | 
            -
            Lint/OrderedMagicComments:
         | 
| 193 | 
            -
              Enabled: false
         | 
| 194 | 
            -
            Lint/OutOfRangeRegexpRef:
         | 
| 195 | 
            -
              Enabled: false
         | 
| 196 | 
            -
            Lint/RaiseException:
         | 
| 197 | 
            -
              Enabled: false
         | 
| 198 | 
            -
            Lint/RedundantCopEnableDirective:
         | 
| 199 | 
            -
              Enabled: false
         | 
| 200 | 
            -
            Lint/RedundantRequireStatement:
         | 
| 201 | 
            -
              Enabled: false
         | 
| 202 | 
            -
            Lint/RedundantSafeNavigation:
         | 
| 203 | 
            -
              Enabled: false
         | 
| 204 | 
            -
            Lint/RedundantWithIndex:
         | 
| 205 | 
            -
              Enabled: false
         | 
| 206 | 
            -
            Lint/RedundantWithObject:
         | 
| 207 | 
            -
              Enabled: false
         | 
| 208 | 
            -
            Lint/RegexpAsCondition:
         | 
| 209 | 
            -
              Enabled: false
         | 
| 210 | 
            -
            Lint/ReturnInVoidContext:
         | 
| 211 | 
            -
              Enabled: false
         | 
| 212 | 
            -
            Lint/SafeNavigationConsistency:
         | 
| 213 | 
            -
              Enabled: false
         | 
| 214 | 
            -
            Lint/SafeNavigationWithEmpty:
         | 
| 215 | 
            -
              Enabled: false
         | 
| 216 | 
            -
            Lint/SelfAssignment:
         | 
| 217 | 
            -
              Enabled: false
         | 
| 218 | 
            -
            Lint/SendWithMixinArgument:
         | 
| 219 | 
            -
              Enabled: false
         | 
| 220 | 
            -
            Lint/ShadowedArgument:
         | 
| 221 | 
            -
              Enabled: false
         | 
| 222 | 
            -
            Lint/StructNewOverride:
         | 
| 223 | 
            -
              Enabled: false
         | 
| 224 | 
            -
            Lint/ToJSON:
         | 
| 225 | 
            -
              Enabled: false
         | 
| 226 | 
            -
            Lint/TopLevelReturnWithArgument:
         | 
| 227 | 
            -
              Enabled: false
         | 
| 228 | 
            -
            Lint/TrailingCommaInAttributeDeclaration:
         | 
| 229 | 
            -
              Enabled: false
         | 
| 230 | 
            -
            Lint/UnreachableLoop:
         | 
| 231 | 
            -
              Enabled: false
         | 
| 232 | 
            -
            Lint/UriEscapeUnescape:
         | 
| 233 | 
            -
              Enabled: false
         | 
| 234 | 
            -
            Lint/UriRegexp:
         | 
| 235 | 
            -
              Enabled: false
         | 
| 236 | 
            -
            Lint/UselessMethodDefinition:
         | 
| 237 | 
            -
              Enabled: false
         | 
| 238 | 
            -
            Lint/UselessTimes:
         | 
| 239 | 
            -
              Enabled: false
         | 
| 240 | 
            -
            Metrics/AbcSize:
         | 
| 241 | 
            -
              Enabled: false
         | 
| 242 | 
            -
            Metrics/BlockLength:
         | 
| 243 | 
            -
              Enabled: false
         | 
| 244 | 
            -
            Metrics/BlockNesting:
         | 
| 245 | 
            -
              Enabled: false
         | 
| 246 | 
            -
            Metrics/ClassLength:
         | 
| 247 | 
            -
              Enabled: false
         | 
| 248 | 
            -
            Metrics/CyclomaticComplexity:
         | 
| 249 | 
            -
              Enabled: false
         | 
| 250 | 
            -
            Metrics/MethodLength:
         | 
| 251 | 
            -
              Enabled: false
         | 
| 252 | 
            -
            Metrics/ModuleLength:
         | 
| 253 | 
            -
              Enabled: false
         | 
| 254 | 
            -
            Metrics/ParameterLists:
         | 
| 255 | 
            -
              Enabled: false
         | 
| 256 | 
            -
            Metrics/PerceivedComplexity:
         | 
| 257 | 
            -
              Enabled: false
         | 
| 258 | 
            -
            Migration/DepartmentName:
         | 
| 259 | 
            -
              Enabled: false
         | 
| 260 | 
            -
            Naming/AccessorMethodName:
         | 
| 261 | 
            -
              Enabled: false
         | 
| 262 | 
            -
            Naming/BlockParameterName:
         | 
| 263 | 
            -
              Enabled: false
         | 
| 264 | 
            -
            Naming/HeredocDelimiterCase:
         | 
| 265 | 
            -
              Enabled: false
         | 
| 266 | 
            -
            Naming/HeredocDelimiterNaming:
         | 
| 267 | 
            -
              Enabled: false
         | 
| 268 | 
            -
            Naming/MemoizedInstanceVariableName:
         | 
| 269 | 
            -
              Enabled: false
         | 
| 270 | 
            -
            Naming/MethodParameterName:
         | 
| 271 | 
            -
              Enabled: false
         | 
| 272 | 
            -
            Naming/RescuedExceptionsVariableName:
         | 
| 273 | 
            -
              Enabled: false
         | 
| 274 | 
            -
            Naming/VariableNumber:
         | 
| 275 | 
            -
              Enabled: false
         | 
| 276 | 
            -
            Performance/BindCall:
         | 
| 277 | 
            -
              Enabled: false
         | 
| 278 | 
            -
            Performance/DeletePrefix:
         | 
| 279 | 
            -
              Enabled: false
         | 
| 280 | 
            -
            Performance/DeleteSuffix:
         | 
| 281 | 
            -
              Enabled: false
         | 
| 282 | 
            -
            Performance/InefficientHashSearch:
         | 
| 283 | 
            -
              Enabled: false
         | 
| 284 | 
            -
            Performance/UnfreezeString:
         | 
| 285 | 
            -
              Enabled: false
         | 
| 286 | 
            -
            Performance/UriDefaultParser:
         | 
| 287 | 
            -
              Enabled: false
         | 
| 288 | 
            -
            RSpec/Be:
         | 
| 289 | 
            -
              Enabled: false
         | 
| 290 | 
            -
            RSpec/Capybara/CurrentPathExpectation:
         | 
| 291 | 
            -
              Enabled: false
         | 
| 292 | 
            -
            RSpec/Capybara/FeatureMethods:
         | 
| 293 | 
            -
              Enabled: false
         | 
| 294 | 
            -
            RSpec/Capybara/VisibilityMatcher:
         | 
| 295 | 
            -
              Enabled: false
         | 
| 296 | 
            -
            RSpec/ContextMethod:
         | 
| 297 | 
            -
              Enabled: false
         | 
| 298 | 
            -
            RSpec/ContextWording:
         | 
| 299 | 
            -
              Enabled: false
         | 
| 300 | 
            -
            RSpec/DescribeClass:
         | 
| 301 | 
            -
              Enabled: false
         | 
| 302 | 
            -
            RSpec/EmptyHook:
         | 
| 303 | 
            -
              Enabled: false
         | 
| 304 | 
            -
            RSpec/EmptyLineAfterExample:
         | 
| 305 | 
            -
              Enabled: false
         | 
| 306 | 
            -
            RSpec/EmptyLineAfterExampleGroup:
         | 
| 307 | 
            -
              Enabled: false
         | 
| 308 | 
            -
            RSpec/EmptyLineAfterHook:
         | 
| 309 | 
            -
              Enabled: false
         | 
| 310 | 
            -
            RSpec/ExampleLength:
         | 
| 311 | 
            -
              Enabled: false
         | 
| 312 | 
            -
            RSpec/ExampleWithoutDescription:
         | 
| 313 | 
            -
              Enabled: false
         | 
| 314 | 
            -
            RSpec/ExpectChange:
         | 
| 315 | 
            -
              Enabled: false
         | 
| 316 | 
            -
            RSpec/ExpectInHook:
         | 
| 317 | 
            -
              Enabled: false
         | 
| 318 | 
            -
            RSpec/FactoryBot/AttributeDefinedStatically:
         | 
| 319 | 
            -
              Enabled: false
         | 
| 320 | 
            -
            RSpec/FactoryBot/CreateList:
         | 
| 321 | 
            -
              Enabled: false
         | 
| 322 | 
            -
            RSpec/FactoryBot/FactoryClassName:
         | 
| 323 | 
            -
              Enabled: false
         | 
| 324 | 
            -
            RSpec/HooksBeforeExamples:
         | 
| 325 | 
            -
              Enabled: false
         | 
| 326 | 
            -
            RSpec/ImplicitBlockExpectation:
         | 
| 327 | 
            -
              Enabled: false
         | 
| 328 | 
            -
            RSpec/ImplicitSubject:
         | 
| 329 | 
            -
              Enabled: false
         | 
| 330 | 
            -
            RSpec/LeakyConstantDeclaration:
         | 
| 331 | 
            -
              Enabled: false
         | 
| 332 | 
            -
            RSpec/LetBeforeExamples:
         | 
| 333 | 
            -
              Enabled: false
         | 
| 334 | 
            -
            RSpec/MissingExampleGroupArgument:
         | 
| 335 | 
            -
              Enabled: false
         | 
| 336 | 
            -
            RSpec/MultipleExpectations:
         | 
| 337 | 
            -
              Enabled: false
         | 
| 338 | 
            -
            RSpec/MultipleMemoizedHelpers:
         | 
| 339 | 
            -
              Enabled: false
         | 
| 340 | 
            -
            RSpec/MultipleSubjects:
         | 
| 341 | 
            -
              Enabled: false
         | 
| 342 | 
            -
            RSpec/NestedGroups:
         | 
| 343 | 
            -
              Enabled: false
         | 
| 344 | 
            -
            RSpec/PredicateMatcher:
         | 
| 345 | 
            -
              Enabled: false
         | 
| 346 | 
            -
            RSpec/ReceiveCounts:
         | 
| 347 | 
            -
              Enabled: false
         | 
| 348 | 
            -
            RSpec/ReceiveNever:
         | 
| 349 | 
            -
              Enabled: false
         | 
| 350 | 
            -
            RSpec/RepeatedExampleGroupBody:
         | 
| 351 | 
            -
              Enabled: false
         | 
| 352 | 
            -
            RSpec/RepeatedExampleGroupDescription:
         | 
| 353 | 
            -
              Enabled: false
         | 
| 354 | 
            -
            RSpec/RepeatedIncludeExample:
         | 
| 355 | 
            -
              Enabled: false
         | 
| 356 | 
            -
            RSpec/ReturnFromStub:
         | 
| 357 | 
            -
              Enabled: false
         | 
| 358 | 
            -
            RSpec/SharedExamples:
         | 
| 359 | 
            -
              Enabled: false
         | 
| 360 | 
            -
            RSpec/StubbedMock:
         | 
| 361 | 
            -
              Enabled: false
         | 
| 362 | 
            -
            RSpec/UnspecifiedException:
         | 
| 363 | 
            -
              Enabled: false
         | 
| 364 | 
            -
            RSpec/VariableDefinition:
         | 
| 365 | 
            -
              Enabled: false
         | 
| 366 | 
            -
            RSpec/VoidExpect:
         | 
| 367 | 
            -
              Enabled: false
         | 
| 368 | 
            -
            RSpec/Yield:
         | 
| 369 | 
            -
              Enabled: false
         | 
| 370 | 
            -
            Security/Open:
         | 
| 371 | 
            -
              Enabled: false
         | 
| 372 | 
            -
            Style/AccessModifierDeclarations:
         | 
| 373 | 
            -
              Enabled: false
         | 
| 374 | 
            -
            Style/AccessorGrouping:
         | 
| 375 | 
            -
              Enabled: false
         | 
| 376 | 
            -
            Style/AsciiComments:
         | 
| 377 | 
            -
              Enabled: false
         | 
| 378 | 
            -
            Style/BisectedAttrAccessor:
         | 
| 379 | 
            -
              Enabled: false
         | 
| 380 | 
            -
            Style/CaseLikeIf:
         | 
| 381 | 
            -
              Enabled: false
         | 
| 382 | 
            -
            Style/ClassEqualityComparison:
         | 
| 383 | 
            -
              Enabled: false
         | 
| 384 | 
            -
            Style/ColonMethodDefinition:
         | 
| 385 | 
            -
              Enabled: false
         | 
| 386 | 
            -
            Style/CombinableLoops:
         | 
| 387 | 
            -
              Enabled: false
         | 
| 388 | 
            -
            Style/CommentedKeyword:
         | 
| 389 | 
            -
              Enabled: false
         | 
| 390 | 
            -
            Style/Dir:
         | 
| 391 | 
            -
              Enabled: false
         | 
| 392 | 
            -
            Style/DoubleCopDisableDirective:
         | 
| 393 | 
            -
              Enabled: false
         | 
| 394 | 
            -
            Style/EmptyBlockParameter:
         | 
| 395 | 
            -
              Enabled: false
         | 
| 396 | 
            -
            Style/EmptyLambdaParameter:
         | 
| 397 | 
            -
              Enabled: false
         | 
| 398 | 
            -
            Style/Encoding:
         | 
| 399 | 
            -
              Enabled: false
         | 
| 400 | 
            -
            Style/EvalWithLocation:
         | 
| 401 | 
            -
              Enabled: false
         | 
| 402 | 
            -
            Style/ExpandPathArguments:
         | 
| 403 | 
            -
              Enabled: false
         | 
| 404 | 
            -
            Style/ExplicitBlockArgument:
         | 
| 405 | 
            -
              Enabled: false
         | 
| 406 | 
            -
            Style/ExponentialNotation:
         | 
| 407 | 
            -
              Enabled: false
         | 
| 408 | 
            -
            Style/FloatDivision:
         | 
| 409 | 
            -
              Enabled: false
         | 
| 410 | 
            -
            Style/FrozenStringLiteralComment:
         | 
| 411 | 
            -
              Enabled: false
         | 
| 412 | 
            -
            Style/GlobalStdStream:
         | 
| 413 | 
            -
              Enabled: false
         | 
| 414 | 
            -
            Style/HashAsLastArrayItem:
         | 
| 415 | 
            -
              Enabled: false
         | 
| 416 | 
            -
            Style/HashLikeCase:
         | 
| 417 | 
            -
              Enabled: false
         | 
| 418 | 
            -
            Style/HashTransformKeys:
         | 
| 419 | 
            -
              Enabled: false
         | 
| 420 | 
            -
            Style/HashTransformValues:
         | 
| 421 | 
            -
              Enabled: false
         | 
| 422 | 
            -
            Style/IfUnlessModifier:
         | 
| 423 | 
            -
              Enabled: false
         | 
| 424 | 
            -
            Style/KeywordParametersOrder:
         | 
| 425 | 
            -
              Enabled: false
         | 
| 426 | 
            -
            Style/MinMax:
         | 
| 427 | 
            -
              Enabled: false
         | 
| 428 | 
            -
            Style/MixinUsage:
         | 
| 429 | 
            -
              Enabled: false
         | 
| 430 | 
            -
            Style/MultilineWhenThen:
         | 
| 431 | 
            -
              Enabled: false
         | 
| 432 | 
            -
            Style/NegatedUnless:
         | 
| 433 | 
            -
              Enabled: false
         | 
| 434 | 
            -
            Style/NumericPredicate:
         | 
| 435 | 
            -
              Enabled: false
         | 
| 436 | 
            -
            Style/OptionalBooleanParameter:
         | 
| 437 | 
            -
              Enabled: false
         | 
| 438 | 
            -
            Style/OrAssignment:
         | 
| 439 | 
            -
              Enabled: false
         | 
| 440 | 
            -
            Style/RandomWithOffset:
         | 
| 441 | 
            -
              Enabled: false
         | 
| 442 | 
            -
            Style/RedundantAssignment:
         | 
| 443 | 
            -
              Enabled: false
         | 
| 444 | 
            -
            Style/RedundantCondition:
         | 
| 445 | 
            -
              Enabled: false
         | 
| 446 | 
            -
            Style/RedundantConditional:
         | 
| 447 | 
            -
              Enabled: false
         | 
| 448 | 
            -
            Style/RedundantFetchBlock:
         | 
| 449 | 
            -
              Enabled: false
         | 
| 450 | 
            -
            Style/RedundantFileExtensionInRequire:
         | 
| 451 | 
            -
              Enabled: false
         | 
| 452 | 
            -
            Style/RedundantRegexpCharacterClass:
         | 
| 453 | 
            -
              Enabled: false
         | 
| 454 | 
            -
            Style/RedundantRegexpEscape:
         | 
| 455 | 
            -
              Enabled: false
         | 
| 456 | 
            -
            Style/RedundantSelfAssignment:
         | 
| 457 | 
            -
              Enabled: false
         | 
| 458 | 
            -
            Style/RedundantSort:
         | 
| 459 | 
            -
              Enabled: false
         | 
| 460 | 
            -
            Style/RescueStandardError:
         | 
| 461 | 
            -
              Enabled: false
         | 
| 462 | 
            -
            Style/SingleArgumentDig:
         | 
| 463 | 
            -
              Enabled: false
         | 
| 464 | 
            -
            Style/SlicingWithRange:
         | 
| 465 | 
            -
              Enabled: false
         | 
| 466 | 
            -
            Style/SoleNestedConditional:
         | 
| 467 | 
            -
              Enabled: false
         | 
| 468 | 
            -
            Style/StderrPuts:
         | 
| 469 | 
            -
              Enabled: false
         | 
| 470 | 
            -
            Style/StringConcatenation:
         | 
| 471 | 
            -
              Enabled: false
         | 
| 472 | 
            -
            Style/Strip:
         | 
| 473 | 
            -
              Enabled: false
         | 
| 474 | 
            -
            Style/SymbolProc:
         | 
| 475 | 
            -
              Enabled: false
         | 
| 476 | 
            -
            Style/TrailingBodyOnClass:
         | 
| 477 | 
            -
              Enabled: false
         | 
| 478 | 
            -
            Style/TrailingBodyOnMethodDefinition:
         | 
| 479 | 
            -
              Enabled: false
         | 
| 480 | 
            -
            Style/TrailingBodyOnModule:
         | 
| 481 | 
            -
              Enabled: false
         | 
| 482 | 
            -
            Style/TrailingCommaInHashLiteral:
         | 
| 483 | 
            -
              Enabled: false
         | 
| 484 | 
            -
            Style/TrailingMethodEndStatement:
         | 
| 485 | 
            -
              Enabled: false
         | 
| 486 | 
            -
            Style/UnpackFirst:
         | 
| 487 | 
            -
              Enabled: false
         | 
| 488 | 
            -
            Lint/DuplicateBranch:
         | 
| 489 | 
            -
              Enabled: false
         | 
| 490 | 
            -
            Lint/DuplicateRegexpCharacterClassElement:
         | 
| 491 | 
            -
              Enabled: false
         | 
| 492 | 
            -
            Lint/EmptyBlock:
         | 
| 493 | 
            -
              Enabled: false
         | 
| 494 | 
            -
            Lint/EmptyClass:
         | 
| 495 | 
            -
              Enabled: false
         | 
| 496 | 
            -
            Lint/NoReturnInBeginEndBlocks:
         | 
| 497 | 
            -
              Enabled: false
         | 
| 498 | 
            -
            Lint/ToEnumArguments:
         | 
| 499 | 
            -
              Enabled: false
         | 
| 500 | 
            -
            Lint/UnexpectedBlockArity:
         | 
| 501 | 
            -
              Enabled: false
         | 
| 502 | 
            -
            Lint/UnmodifiedReduceAccumulator:
         | 
| 503 | 
            -
              Enabled: false
         | 
| 504 | 
            -
            Performance/CollectionLiteralInLoop:
         | 
| 505 | 
            -
              Enabled: false
         | 
| 506 | 
            -
            Style/ArgumentsForwarding:
         | 
| 507 | 
            -
              Enabled: false
         | 
| 508 | 
            -
            Style/CollectionCompact:
         | 
| 509 | 
            -
              Enabled: false
         | 
| 510 | 
            -
            Style/DocumentDynamicEvalDefinition:
         | 
| 511 | 
            -
              Enabled: false
         | 
| 512 | 
            -
            Style/NegatedIfElseCondition:
         | 
| 513 | 
            -
              Enabled: false
         | 
| 514 | 
            -
            Style/NilLambda:
         | 
| 515 | 
            -
              Enabled: false
         | 
| 516 | 
            -
            Style/RedundantArgument:
         | 
| 517 | 
            -
              Enabled: false
         | 
| 518 | 
            -
            Style/SwapValues:
         | 
| 519 | 
            -
              Enabled: false
         | 
| 2 | 
            +
            inherit_gem:
         | 
| 3 | 
            +
              voxpupuli-rubocop: rubocop.yml
         | 
    
        data/.simplecov
    CHANGED
    
    
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,6 +1,23 @@ | |
| 1 1 | 
             
            # Changelog
         | 
| 2 2 |  | 
| 3 | 
            -
            ## [1. | 
| 3 | 
            +
            ## [1.2.0](https://github.com/voxpupuli/beaker-google/tree/1.2.0) (2024-06-07)
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            [Full Changelog](https://github.com/voxpupuli/beaker-google/compare/1.1.0...1.2.0)
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            **Implemented enhancements:**
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            - CI: Run on Ruby 3.2 and 3.3 as well [\#52](https://github.com/voxpupuli/beaker-google/pull/52) ([bastelfreak](https://github.com/bastelfreak))
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            **Fixed bugs:**
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            - Fix call to Google::Apis::ComputeV1::Instance.new\(\) to work on Ruby 3 [\#51](https://github.com/voxpupuli/beaker-google/pull/51) ([silug](https://github.com/silug))
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            **Merged pull requests:**
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            - CI: build gem with --strict & --verbose [\#53](https://github.com/voxpupuli/beaker-google/pull/53) ([bastelfreak](https://github.com/bastelfreak))
         | 
| 18 | 
            +
            - Cleanup for rubocop [\#50](https://github.com/voxpupuli/beaker-google/pull/50) ([silug](https://github.com/silug))
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            ## [1.1.0](https://github.com/voxpupuli/beaker-google/tree/1.1.0) (2024-05-22)
         | 
| 4 21 |  | 
| 5 22 | 
             
            [Full Changelog](https://github.com/voxpupuli/beaker-google/compare/1.0.0...1.1.0)
         | 
| 6 23 |  | 
    
        data/Gemfile
    CHANGED
    
    | @@ -1,3 +1,5 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 1 3 | 
             
            source ENV.fetch('GEM_SOURCE', 'https://rubygems.org')
         | 
| 2 4 |  | 
| 3 5 | 
             
            gemspec
         | 
| @@ -18,6 +20,7 @@ group :acceptance_testing do | |
| 18 20 | 
             
              gem 'beaker', *location_for(ENV.fetch('BEAKER_VERSION', '~> 4.0'))
         | 
| 19 21 | 
             
            end
         | 
| 20 22 |  | 
| 21 | 
            -
            group :release do
         | 
| 22 | 
            -
              gem ' | 
| 23 | 
            +
            group :release, optional: true do
         | 
| 24 | 
            +
              gem 'faraday-retry', '~> 2.1', require: false
         | 
| 25 | 
            +
              gem 'github_changelog_generator', '~> 1.16.4', require: false
         | 
| 23 26 | 
             
            end
         |