diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-02-04 11:18:06 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-02-04 11:18:06 +0000 |
commit | 97b8cee540c4f150aa0690934a1f1338230dd55f (patch) | |
tree | 6b9061d7b19410d8ee4ff4c0f3acf25266a36d15 | |
parent | 99c141d511a22b61c3e529763e1160e6f1b9ad3b (diff) |
Hint to ruby that rubygems should be loaded.
This allows our redis-library to be used.
-rwxr-xr-x | bin/custodian-enqueue | 2 | ||||
-rwxr-xr-x | bin/custodian-queue | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/custodian-enqueue b/bin/custodian-enqueue index 672ace9..e4ce9d9 100755 --- a/bin/custodian-enqueue +++ b/bin/custodian-enqueue @@ -1,4 +1,4 @@ -#!/usr/bin/ruby -Ilib/ +#!/usr/bin/ruby -Ilib/ -I../lib/ -rubygems # # NAME # custodian-enqueue - Parse tests from a file and enqueue them. diff --git a/bin/custodian-queue b/bin/custodian-queue index 0545df7..01fb381 100755 --- a/bin/custodian-queue +++ b/bin/custodian-queue @@ -1,4 +1,4 @@ -#!/usr/bin/ruby -Ilib/ +#!/usr/bin/ruby -Ilib/ -I../lib/ -rubygems # # NAME # custodian-queue - Work with the queue. |