isolate 1.5.0 → 1.5.1
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.
- data/CHANGELOG.rdoc +4 -0
- data/lib/isolate.rb +4 -3
- data/test/test_isolate.rb +4 -0
- metadata +2 -2
data/CHANGELOG.rdoc
CHANGED
data/lib/isolate.rb
CHANGED
@@ -21,7 +21,7 @@ class Isolate
|
|
21
21
|
end
|
22
22
|
end
|
23
23
|
|
24
|
-
VERSION = "1.5.
|
24
|
+
VERSION = "1.5.1" # :nodoc:
|
25
25
|
|
26
26
|
attr_reader :entries # :nodoc:
|
27
27
|
|
@@ -71,6 +71,7 @@ class Isolate
|
|
71
71
|
@enabled = false
|
72
72
|
@entries = []
|
73
73
|
@environments = []
|
74
|
+
@passthrough = false
|
74
75
|
@path = path
|
75
76
|
|
76
77
|
@install = options.fetch :install, true
|
@@ -242,11 +243,11 @@ class Isolate
|
|
242
243
|
end
|
243
244
|
|
244
245
|
def passthrough &block # :nodoc:
|
245
|
-
@passthrough =
|
246
|
+
@passthrough = yield
|
246
247
|
end
|
247
248
|
|
248
249
|
def passthrough? # :nodoc:
|
249
|
-
|
250
|
+
@passthrough
|
250
251
|
end
|
251
252
|
|
252
253
|
def verbose? # :nodoc:
|
data/test/test_isolate.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: isolate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Barnette
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2009-10-
|
13
|
+
date: 2009-10-02 00:00:00 -07:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|