File: 0005-Drop-development-dependency-on-bundler.patch

package info (click to toggle)
ruby-rbnacl 7.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 700 kB
  • sloc: ruby: 2,884; makefile: 3
file content (31 lines) | stat: -rw-r--r-- 997 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
From: Lucas Nussbaum <lucas@debian.org>
Date: Sun, 9 Jul 2017 08:57:11 +0200
Subject: Drop development dependency on bundler

---
 rbnacl.gemspec      | 2 --
 spec/spec_helper.rb | 1 -
 2 files changed, 3 deletions(-)

Index: ruby-rbnacl-7.1.1/rbnacl.gemspec
===================================================================
--- ruby-rbnacl-7.1.1.orig/rbnacl.gemspec
+++ ruby-rbnacl-7.1.1/rbnacl.gemspec
@@ -29,5 +29,4 @@ Gem::Specification.new do |spec|
   spec.require_paths = ["lib"]
   spec.required_ruby_version = ">= 2.3.0"
   spec.add_runtime_dependency "ffi"
-  spec.add_development_dependency "bundler"
 end
Index: ruby-rbnacl-7.1.1/spec/spec_helper.rb
===================================================================
--- ruby-rbnacl-7.1.1.orig/spec/spec_helper.rb
+++ ruby-rbnacl-7.1.1/spec/spec_helper.rb
@@ -8,7 +8,6 @@ Coveralls.wear!
 # Run the specs prior to running the self-test
 $RBNACL_SELF_TEST = false
 
-require "bundler/setup"
 require "rbnacl"
 
 require "shared/box"