Skip to content

Commit

Permalink
(maint) Add Dependabot to keep things up to date (voxpupuli#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
genebean authored Jul 8, 2020
1 parent be0e44f commit fb9e217
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: bundler
directory: "/"
schedule:
interval: daily
time: "13:00"
open-pull-requests-limit: 10
5 changes: 3 additions & 2 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@ require:
- rubocop-rspec
- rubocop-performance
AllCops:
TargetRubyVersion: 2.3
TargetRubyVersion: 2.5
NewCops: enable

Style/Documentation:
Enabled: false

Metrics/MethodLength:
Max: 25

Metrics/LineLength:
Layout/LineLength:
Max: 120

Metrics/AbcSize:
Expand Down
2 changes: 1 addition & 1 deletion beaker-gke.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |s|
s.require_paths = ['lib']

# Required ruby version
s.required_ruby_version = '~> 2.3'
s.required_ruby_version = '~> 2.5'

# Testing dependencies
s.add_development_dependency 'climate_control'
Expand Down
2 changes: 2 additions & 0 deletions spec/gke/hypervisor/gke_spec.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# frozen_string_literal: true

require 'beaker/hypervisor/gke'

describe Beaker::Gke do
let(:hosts) { make_hosts }

Expand Down
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'climate_control'
require 'fakefs/spec_helpers'

Dir.glob(Dir.pwd + '/lib/beaker/hypervisor/*.rb') { |file| require file }
Dir.glob(Dir.pwd + '/lib/beaker/hypervisor/*.rb').sort { |file| require file }

# setup & require beaker's spec_helper.rb
beaker_gem_spec = Gem::Specification.find_by_name('beaker')
Expand Down

0 comments on commit fb9e217

Please sign in to comment.