File: 001-fix-library-path.patch

package info (click to toggle)
ruby-email-reply-parser 0.5.8-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208 kB
  • sloc: ruby: 279; makefile: 2; sh: 2
file content (19 lines) | stat: -rw-r--r-- 699 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: Fix Library Path
 Fix the path for email_reply_parser in email_reply_parser_test.rb
Author: Abhijith PA <abhijith@openmailbox.org>
Last-Update: 2017-08-16
Index: ruby-email-reply-parser/test/email_reply_parser_test.rb
===================================================================
--- ruby-email-reply-parser.orig/test/email_reply_parser_test.rb
+++ ruby-email-reply-parser/test/email_reply_parser_test.rb
@@ -2,9 +2,8 @@ require 'rubygems'
 require 'test/unit'
 require 'pathname'
 require 'pp'
-
 dir = Pathname.new File.expand_path(File.dirname(__FILE__))
-require dir + '..' + 'lib' + 'email_reply_parser'
+require 'email_reply_parser'
 
 EMAIL_FIXTURE_PATH = dir + 'emails'