Skip to content

Commit d1c174e

Browse files
committed
(maint) fix rebase and rever the Gemfile changes
1 parent 01c4a59 commit d1c174e

File tree

4 files changed

+2
-20
lines changed

4 files changed

+2
-20
lines changed

.rubocop.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,10 @@ Style/BlockDelimiters:
3333
Description: Prefer braces for chaining. Mostly an aesthetical choice. Better to
3434
be consistent then.
3535
EnforcedStyle: braces_for_chaining
36-
<<<<<<< HEAD
37-
=======
3836
Style/BracesAroundHashParameters:
3937
Description: Braces are required by Ruby 2.7. Cop removed from RuboCop v0.80.0.
4038
See https://github.com/rubocop-hq/rubocop/pull/7643
4139
Enabled: false
42-
>>>>>>> c228e75... Update pdk-templates for gitpod and codespaces support
4340
Style/ClassAndModuleChildren:
4441
Description: Compact style reduces the required amount of indentation.
4542
EnforcedStyle: compact

.sync.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,11 @@ Rakefile:
4343
spec/spec_helper.rb:
4444
mock_with: ":rspec"
4545
coverage_report: true
46-
<<<<<<< HEAD
4746
.github/workflows/nightly.yml:
4847
unmanaged: false
4948
.github/workflows/pr_test.yml:
50-
=======
49+
unmanaged: false
5150
.gitpod.Dockerfile:
5251
unmanaged: false
5352
.gitpod.yml:
54-
>>>>>>> c228e75... Update pdk-templates for gitpod and codespaces support
5553
unmanaged: false

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,6 @@ jobs:
8282
script: ["travis_wait 45 bundle exec rake litmus:acceptance:parallel"]
8383
services: docker
8484
stage: acceptance
85-
<<<<<<< HEAD
86-
- before_script:
87-
=======
8885
-
8986
before_script:
9087
- "bundle exec rake 'litmus:provision_list[travis_el8]'"
@@ -98,7 +95,6 @@ jobs:
9895
stage: acceptance
9996
-
10097
before_script:
101-
>>>>>>> c228e75... Update pdk-templates for gitpod and codespaces support
10298
- "bundle exec rake 'litmus:provision_list[travis_deb]'"
10399
- "bundle exec rake 'litmus:install_agent[puppet6]'"
104100
- "bundle exec rake litmus:install_module"

Gemfile

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ group :development do
2424
gem "json", '= 2.0.4', require: false if Gem::Requirement.create('~> 2.4.2').satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
2525
gem "json", '= 2.1.0', require: false if Gem::Requirement.create(['>= 2.5.0', '< 2.7.0']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
2626
gem "json", '= 2.3.0', require: false if Gem::Requirement.create(['>= 2.7.0', '< 2.8.0']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
27-
<<<<<<< HEAD
2827
gem "puppet-module-posix-default-r#{minor_version}", '~> 1.0', require: false, platforms: [:ruby]
2928
gem "puppet-module-posix-dev-r#{minor_version}", '~> 1.0', require: false, platforms: [:ruby]
3029
gem "puppet-module-win-default-r#{minor_version}", '~> 1.0', require: false, platforms: [:mswin, :mingw, :x64_mingw]
@@ -34,14 +33,6 @@ end
3433
group :system_tests do
3534
gem "puppet-module-posix-system-r#{minor_version}", '~> 1.0', require: false, platforms: [:ruby]
3635
gem "puppet-module-win-system-r#{minor_version}", '~> 1.0', require: false, platforms: [:mswin, :mingw, :x64_mingw]
37-
=======
38-
gem "rb-readline", '= 0.5.5', require: false, platforms: [:mswin, :mingw, :x64_mingw]
39-
gem "puppet-module-posix-default-r#{minor_version}", '~> 0.4', require: false, platforms: [:ruby]
40-
gem "puppet-module-posix-dev-r#{minor_version}", '~> 0.4', require: false, platforms: [:ruby]
41-
gem "puppet-module-win-default-r#{minor_version}", '~> 0.4', require: false, platforms: [:mswin, :mingw, :x64_mingw]
42-
gem "puppet-module-win-dev-r#{minor_version}", '~> 0.4', require: false, platforms: [:mswin, :mingw, :x64_mingw]
43-
gem "github_changelog_generator", require: false, git: 'https://github.com/skywinder/github-changelog-generator', ref: '20ee04ba1234e9e83eb2ffb5056e23d641c7a018' if Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('2.2.2')
44-
>>>>>>> c228e75... Update pdk-templates for gitpod and codespaces support
4536
end
4637

4738
gems = {}
@@ -79,4 +70,4 @@ extra_gemfiles.each do |gemfile|
7970
eval(File.read(gemfile), binding)
8071
end
8172
end
82-
# vim: syntax=ruby
73+
# vim: syntax=ruby

0 commit comments

Comments
 (0)