>>>>> "J" == Jan Wieck <JanWieck(at)t-online(dot)de> writes:
J> there have been a couple of questions WRT doing untrustable
J> things like file access, LDAP and the like from inside of
J> triggers or functions.
With PL/Ruby you can do this by giving the option --with-safe-level=number
at compile time.
Safe level must be >= 1, you just need to comment the line :
rb_set_safe_level(1);
in plruby_init_all(), if you want to run it with $SAFE = 0
Guy Decoux