1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
Description: Remove the use of rubygems and bundler in spec files
Origin: vendor
Last-Update: 2023-08-24
--- a/spec/addressable/idna_spec.rb
+++ b/spec/addressable/idna_spec.rb
@@ -18,7 +18,7 @@
require "spec_helper"
# Have to use RubyGems to load the idn gem.
-require "rubygems"
+#require "rubygems"
require "addressable/idna"
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,6 +1,5 @@
# frozen_string_literal: true
-require 'bundler/setup'
require 'rspec/its'
begin
|