File: disable-bundler-requires.patch

package info (click to toggle)
ruby-jsonify 0.4.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 240 kB
  • sloc: ruby: 748; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 654 bytes parent folder | download | duplicates (4)
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: Don't include bundler in test helper module
 Don't require the bundler module when running unit tests as
 it's not needed.
Author: Tim Potter <tpot@hp.com>
Last Update: 2014-09-27

Index: ruby-jsonify-0.4.1/spec/spec_helper.rb
===================================================================
--- ruby-jsonify-0.4.1.orig/spec/spec_helper.rb
+++ ruby-jsonify-0.4.1/spec/spec_helper.rb
@@ -1,9 +1,9 @@
 require 'json'
 require 'benchmark'
-require 'bundler'
-require 'bundler/setup'
+#require 'bundler'
+#require 'bundler/setup'
 require 'jsonify'
 require 'jsonify/tilt'
 
 RSpec.configure do |config|
-end
\ No newline at end of file
+end