1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
Description: fix requires in spec/
Disable rubygems and bundler stuff
Add requirement on rspec
Author: Cédric Boutillier <cedric.boutillier@gmail.com>
Last-Update: 2011-09-06
Forwarded: not-needed
---
spec/spec_helper.rb | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index d694e7f..5f09428 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,10 +1,11 @@
# typed: strict
# coding: utf-8
-require "rubygems"
-require "bundler"
-Bundler.setup
+#require "rubygems"
+#require "bundler"
+#Bundler.setup
+require 'rspec'
require 'pdf/reader'
require 'timeout'
require 'singleton'
|