exec_sandbox 0.2.4 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/exec_sandbox.gemspec +2 -2
- data/lib/exec_sandbox/spawn.rb +1 -1
- data/spec/exec_sandbox/sandbox_spec.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: da350882626e6b7b1dd5c43c57e61f548de41f02
|
|
4
|
+
data.tar.gz: f37a48991aac1e7a268e5cbd94d35502e87247a9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6b489c3bf6517a73fd7d720aeb8cf336fc74c27e8346dc87f66a731b20dc1470091652d6cd7cabf780f5f9b498060b59d23b563cc93cea650ef441ef40024bc8
|
|
7
|
+
data.tar.gz: 0fde6ff96be6c49b0b823240ee9c2557676b2fbe60504a26995d3e6ae584589afcb6c1b711ca9e780131226384ef49843c889dec02c22db1ffc3e065e5249e28
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.5
|
data/exec_sandbox.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: exec_sandbox 0.2.
|
|
5
|
+
# stub: exec_sandbox 0.2.5 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "exec_sandbox"
|
|
9
|
-
s.version = "0.2.
|
|
9
|
+
s.version = "0.2.5"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.authors = ["Victor Costan"]
|
data/lib/exec_sandbox/spawn.rb
CHANGED
|
@@ -164,7 +164,7 @@ module Spawn
|
|
|
164
164
|
# Maps an internal MRI function that we need.
|
|
165
165
|
module RubyVM
|
|
166
166
|
extend FFI::Library
|
|
167
|
-
ffi_lib RbConfig::CONFIG['
|
|
167
|
+
ffi_lib RbConfig::CONFIG['RUBY_SO_NAME']
|
|
168
168
|
begin
|
|
169
169
|
attach_function :rb_reserved_fd_p, [:int], :int
|
|
170
170
|
rescue FFI::NotFoundError
|