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
|