File: library-path

package info (click to toggle)
ruby-fog-xml 0.1.1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 196 kB
  • sloc: ruby: 246; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 440 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Fix library path
 Change relative library path to absolute for CI to work
Author: Balasankar C <balasankarc@autistici.org>
Last-Update: 2015-01-17
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/spec/minitest_helper.rb
+++ b/spec/minitest_helper.rb
@@ -28,6 +28,6 @@
   end
 end
 
-require File.join(File.dirname(__FILE__), "../lib/fog/xml")
+require 'fog/xml'
 
 Coveralls.wear! if ENV["COVERAGE"]