diff options
author | Luiz Angelo Daros de Luca <luizluca@gmail.com> | 2014-10-04 16:54:24 -0300 |
---|---|---|
committer | Luiz Angelo Daros de Luca <luizluca@gmail.com> | 2014-10-07 14:14:52 -0300 |
commit | a0e65256e93dac17d221bf788507285ba0eca632 (patch) | |
tree | 12ecde3d01a06fe2b74415051d14d23112298eba /lang/ruby/files | |
parent | 205becb6e8557810f6759372b679b49a96c9a66e (diff) |
ruby: wrap script to disable gems if not installed
ruby, by default, try to load gems on start. If not
present, it fails. As gems brings many deps, this make ruby
unsuitable for routers limited resources.
ruby can avoid to load gems with the option "--disable-gems".
So, a wrap script in the place of /usr/bin/ruby adds this option
if gems are not found.
Also add vendor/site directories
Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
Diffstat (limited to 'lang/ruby/files')
-rw-r--r-- | lang/ruby/files/ruby | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lang/ruby/files/ruby b/lang/ruby/files/ruby new file mode 100644 index 000000000..e4904fc2f --- /dev/null +++ b/lang/ruby/files/ruby @@ -0,0 +1,5 @@ +#!/bin/sh +if ! [ -r "@RUBY_LIBPATH@/rubygems.rb" ]; then + exec @RUBY_BINPATH@ --disable-gems "$@" +fi +exec @RUBY_BINPATH@ "$@" |