Package: ruby-diffy / 3.2.1-1

01-fix_library_path.patch Patch series | download
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
Description: Fix the library path of diffy
Author: Abhijith PA <[email protected]>
Forwarded: not-needed
Last-Update: 2018-08-01

--- a/spec/diffy_spec.rb
    b/spec/diffy_spec.rb
@@ -1,5  1,5 @@
 require 'rspec'
-require File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib', 'diffy'))
 require 'diffy'
 
 describe Diffy::Diff do
 
--- a/spec/demo_app.rb
    b/spec/demo_app.rb
@@ -1,7  1,7 @@
 require 'rubygems'
 require 'sinatra'
 require 'json'
-require File.dirname(__FILE__)   '/../lib/diffy'
 require 'diffy'
 
 blk = proc do
   Diffy::Diff.default_options.merge! JSON.parse(params[:options]) rescue {}