File: remove_rubygems_bundler_stuff_from_spec.patch

package info (click to toggle)
ruby-fssm 0.2.10-3.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 364 kB
  • sloc: ruby: 1,082; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 737 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Description: Remove bundler/rubygems require statement from the specs
 These are not needed since all the libraries are in Debian
Author: Cédric Boutillier <cedric.boutillier@gmail.com>
Forwarded: not-needed
Last-Update: 2012-05-15
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,8 +1,8 @@
-$LOAD_PATH.unshift(File.dirname(__FILE__))
-$LOAD_PATH.unshift(File.expand_path('../lib', File.dirname(__FILE__)))
-
-require 'rubygems'
-require 'bundler/setup'
+#$LOAD_PATH.unshift(File.dirname(__FILE__))
+#$LOAD_PATH.unshift(File.expand_path('../lib', File.dirname(__FILE__)))
+#
+#require 'rubygems'
+#require 'bundler/setup'
 require 'fssm'
 
 require 'rspec'