Gemfile in url_canonicalize-0.1.5 vs Gemfile in url_canonicalize-0.1.9

- old
+ new

@@ -1,17 +1,18 @@ +# frozen_string_literal: true source 'https://rubygems.org' gemspec group :test do + gem 'coveralls', require: false gem 'rspec' gem 'rspec_junit_formatter' + gem 'simplecov', '~> 0.13' gem 'webmock' - gem 'simplecov' - gem 'coveralls', require: false end local_gemfile = 'Gemfile.local' if File.exist?(local_gemfile) - eval(File.read(local_gemfile)) # rubocop:disable Lint/Eval + eval(File.read(local_gemfile)) # rubocop:disable Security/Eval end