Re: New: security/ruby-pledge: pledge(2) access from ruby

2016-11-04 Thread Jeremie Courreges-Anglas
Jeremy Evans writes: > On 11/04 11:19, Jeremie Courreges-Anglas wrote: >> Jeremy Evans writes: >> >> > This is based on the ruby-tame port I worked on at c2k15, which >> > apparently was too early. Using this, you can access pledge(2) >> > from ruby

Re: New: security/ruby-pledge: pledge(2) access from ruby

2016-11-04 Thread Jeremy Evans
On 11/04 11:19, Jeremie Courreges-Anglas wrote: > Jeremy Evans writes: > > > This is based on the ruby-tame port I worked on at c2k15, which > > apparently was too early. Using this, you can access pledge(2) > > from ruby via: > > > > require 'pledge' > >

Re: New: security/ruby-pledge: pledge(2) access from ruby

2016-11-04 Thread Jeremie Courreges-Anglas
Jeremy Evans writes: > This is based on the ruby-tame port I worked on at c2k15, which > apparently was too early. Using this, you can access pledge(2) > from ruby via: > > require 'pledge' > Pledge.pledge('rpath') # stdio added automatically, as ruby needs it

Re: New: security/ruby-pledge: pledge(2) access from ruby

2016-11-04 Thread Paul Irofti
On Thu, Nov 03, 2016 at 04:40:00PM -0700, Jeremy Evans wrote: > This is based on the ruby-tame port I worked on at c2k15, which > apparently was too early. Using this, you can access pledge(2) > from ruby via: > > require 'pledge' > Pledge.pledge('rpath') # stdio added automatically, as ruby

New: security/ruby-pledge: pledge(2) access from ruby

2016-11-03 Thread Jeremy Evans
This is based on the ruby-tame port I worked on at c2k15, which apparently was too early. Using this, you can access pledge(2) from ruby via: require 'pledge' Pledge.pledge('rpath') # stdio added automatically, as ruby needs it Source code at https://github.com/jeremyevans/ruby-pledge OKs