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 requirement while running tests
Author: Balasankar C <balasankarc@autistici.org>
Last-Update: 2015-12-09
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -5,7 +5,7 @@
SimpleCov.start
end
-require 'bundler/setup'
+#require 'bundler/setup'
require 'babosa'
shared_examples_for "a latin transliterator" do
@@ -42,4 +42,4 @@
string = "आदित्य तापड़िया"
expect(t.transliterate(string)).to match(/[\x0-\x7f]/)
end
-end
\ No newline at end of file
+end
|