Time |
S |
Nick |
Message |
02:21 |
|
pdurbin |
semiosis: I'm such an AWS newb: http://irclog.iq.harvard.edu/dataverse/2016-10-05 |
02:21 |
|
pdurbin |
prologic: and for good measure there's some docker stuff in there :) |
15:39 |
|
dotplus |
what's the ruby equivalent of PYTHONPATH/PERL5LIB? |
16:10 |
|
sivoais |
dotplus: looks like RUBYLIB |
16:11 |
|
dotplus |
ok. I'm hoping that will do the trick of helping me know where to put a gem to be used by a Vagrantfile |
16:12 |
|
* dotplus |
feels a little foolish for not knowing/assuming/trying that already |
16:14 |
|
sivoais |
hehe, I just read the friendly manpage ;-) |
16:15 |
|
sivoais |
other ways: ruby -I <dir> or appending to the Ruby $LOAD_PATH variable ($LOAD_PATH.unshift(<dir>)) |
16:15 |
|
* sivoais |
doesn't know Ruby very well, but it's Yet Another Dynlang ;-) |
16:30 |
|
dotplus |
true. LOAD_PATH might work for my usecase. I'm trying to use an extra gem from within a vagrantfile. |