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
