Skip to content

Commit

Permalink
Update outdated gems
Browse files Browse the repository at this point in the history
  • Loading branch information
tohuwabohu committed Sep 9, 2024
1 parent ae9948f commit 109afeb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ source ENV['GEM_SOURCE'] || 'https://rubygems.org'
group :development, :test do
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.5'
gem 'rspec-puppet', '~> 5.0' # 4.0 blocked by Puppet 6
gem 'rspec-puppet', '~> 5.0'
gem 'pdk', '~> 3.0'
gem 'puppetlabs_spec_helper', '~> 6.0.2' # 6.0.3 blocked by Puppet 6
gem 'puppetlabs_spec_helper', '~> 7.0'
gem 'puppet-blacksmith', '~> 6.1'
gem 'puppet-lint', '~> 4.0'
gem 'metadata-json-lint', '~> 4.0'
gem 'puppet-lint-unquoted_string-check', '~> 3.0'
gem 'puppet-syntax', '~> 3.1'
gem 'puppet-syntax', '~> 4.1'
end

group :system_tests do
Expand Down
14 changes: 9 additions & 5 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,22 @@

RSpec.configure do |c|
c.default_facts = {
# default
:networking => {
:ip => '127.0.0.1'
},
# concat
:concat_basedir => '/path/to/dir',
:id => 'deadbeef',
:kernel => 'deadbeef',
:path => '/usr/bin',

:os => {
:family => 'Debian',
:name => 'Debian',
:release => {
:major => '10'
}
:family => 'Debian',
:name => 'Debian',
:release => {
:major => '10'
}
},
}
end

0 comments on commit 109afeb

Please sign in to comment.