Gemfile in onceover-3.22.0 vs Gemfile in onceover-4.0.0

- old
+ new

@@ -8,16 +8,17 @@ gem 'puppet', ENV['PUPPET_VERSION'] end group :test do # Required for the final controlrepo tests + gem 'rexml', '~> 3.3', '>= 3.3.9' gem 'toml-rb' end group :development do - gem 'pry' gem 'cucumber' + gem 'pry' gem 'rubocop' gem 'rubygems-tasks' end # Evaluate Gemfile.local if it exists @@ -26,6 +27,11 @@ end # Evaluate ~/.gemfile if it exists if File.exist?(File.join(Dir.home, '.gemfile')) eval(File.read(File.join(Dir.home, '.gemfile')), binding) +end + +group :release do + gem 'faraday-retry', require: false + gem 'github_changelog_generator', require: false end