File: library-path

package info (click to toggle)
ruby-crass 1.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 824 kB
  • sloc: ruby: 2,158; python: 202; makefile: 7
file content (17 lines) | stat: -rw-r--r-- 451 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: Fix library path
 Change relative library path to absolute for DebCI 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/test/support/common.rb
+++ b/test/support/common.rb
@@ -2,7 +2,7 @@
 gem 'minitest'
 require 'minitest/autorun'
 
-require_relative '../../lib/crass'
+require 'crass'
 
 CP = Crass::Parser
 CT = Crass::Tokenizer