File: remove_rubygems_stuff.patch

package info (click to toggle)
ruby-addressable 2.8.8-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 824 kB
  • sloc: ruby: 13,651; makefile: 11
file content (24 lines) | stat: -rw-r--r-- 495 bytes parent folder | download | duplicates (2)
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