File: use-system-rake.patch

package info (click to toggle)
ruby-scientist 1.6.5-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 292 kB
  • sloc: ruby: 1,239; sh: 23; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 595 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: Use system rake instead of bundled rake
 This package is configured to use apt installed build dependencies, so the
 bundler can't find rake because it's installed system-wide.
 .
 This patch fixes that issue by using the system rake instead of a bundled one.
Author: Max Gilmour <max.gilmour@canonical.com>
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/ruby-scientist/+bug/2133826 
Last-Update: 2025-12-03
---
--- a/script/test
+++ b/script/test
@@ -4,4 +4,4 @@
 set -e
 
 cd $(dirname "$0")/..
-  script/bootstrap && bundle exec rake test
+  script/bootstrap && rake test