1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: Remove bundler usage
Remove the usage of bundler for finding out gems
Author: Balasankar C <balasankarc@autistici.org>
Forwarded: not-needed
Last-Update: 2015-06-14
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -1,5 +1,3 @@
-Bundler.require
-
require 'get_process_mem'
require 'test/unit'
@@ -7,4 +5,4 @@
path = Pathname.new(File.expand_path("../fixtures", __FILE__))
return path.join(name) if name
path
-end
\ No newline at end of file
+end
|