isolate 3.3.1 → 3.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.
- checksums.yaml +5 -5
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.rdoc +26 -0
- data/README.rdoc +2 -2
- data/Rakefile +19 -0
- data/lib/hoe/isolate.rb +1 -1
- data/lib/isolate/sandbox.rb +42 -8
- data/lib/isolate.rb +4 -2
- data/test/fixtures/system_redundant/specifications/rake-0.8.7.gemspec +1 -1
- data/test/fixtures/with-hoe/specifications/hoe-2.3.3.gemspec +1 -1
- data/test/fixtures/with-hoe/specifications/rake-0.8.7.gemspec +1 -1
- data/test/fixtures/with-hoe/specifications/rubyforge-1.0.4.gemspec +1 -1
- data/test/test_isolate_sandbox.rb +16 -7
- data.tar.gz.sig +0 -0
- metadata +62 -61
- metadata.gz.sig +0 -0
- data/.gemtest +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: b2b55d89acb0e5982a52f30273070453a540483ea7c67572dcf356da83a63406
|
4
|
+
data.tar.gz: cb87cf7176af4cf28030ec9b8f341d8c8e360b1ac3e8e72c22b24d031043cde9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '00971ffc02710b27fd3b582c9f5e15e27d26a59cea9467190c22da1e54fd6bdd84c03aad4c31382a0fc57b277efecbfb859f65c17cb4fba866d6e137871137da'
|
7
|
+
data.tar.gz: a19cb7d860e05bd8b19a3bc74941e7777067c55b7a144c210061e165452a705abb3ebbec29700b037aba70dae246e393686152cf19a8c78480ca06d76c46b9c8
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/CHANGELOG.rdoc
CHANGED
@@ -1,3 +1,29 @@
|
|
1
|
+
=== 3.5.1 / 2022-06-14
|
2
|
+
|
3
|
+
* 1 bug fix:
|
4
|
+
|
5
|
+
* Fixed shadowed variable warning.
|
6
|
+
|
7
|
+
=== 3.5.0 / 2020-02-29
|
8
|
+
|
9
|
+
* 2 minor enhancements:
|
10
|
+
|
11
|
+
* Added :name option for sandboxes, mapping to path=~/.gem/repos/:name.
|
12
|
+
* Hoe isolate now defaults to system:true for its sandbox.
|
13
|
+
|
14
|
+
=== 3.4.0 / 2019-12-17
|
15
|
+
|
16
|
+
* 2 minor enhancements:
|
17
|
+
|
18
|
+
* Switched multiruby default value to false.
|
19
|
+
* Added logic to rebuild extensions as needed now that multiruby defaults to false.
|
20
|
+
|
21
|
+
* 3 bug fixes:
|
22
|
+
|
23
|
+
* Remove empty path strings. This caused the #include? check to nuke everything.
|
24
|
+
* Only remove paths that look like gem paths: absolute and end in "lib".
|
25
|
+
* Fixed handling of path cleanup when system:false.
|
26
|
+
|
1
27
|
=== 3.3.1 / 2015-02-02
|
2
28
|
|
3
29
|
* 1 bug fix:
|
data/README.rdoc
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
= Isolate
|
2
2
|
|
3
|
-
|
3
|
+
home :: http://github.com/jbarnette/isolate
|
4
4
|
|
5
5
|
== Description
|
6
6
|
|
@@ -80,7 +80,7 @@ looking at the <tt>ISOLATE_ENV</tt>, <tt>RACK_ENV</tt>, and
|
|
80
80
|
|
81
81
|
=== Library Development
|
82
82
|
|
83
|
-
If you're using Hoe[http://
|
83
|
+
If you're using Hoe[http://www.zenspider.com/projects/hoe.html] to manage your
|
84
84
|
library, you can use Isolate's Hoe plugin to automatically install
|
85
85
|
your lib's development, runtime, and test dependencies without
|
86
86
|
polluting your system RubyGems, and run your tests/specs in total
|
data/Rakefile
CHANGED
@@ -2,6 +2,11 @@ require "rubygems"
|
|
2
2
|
require "hoe"
|
3
3
|
|
4
4
|
$:.unshift "lib"
|
5
|
+
|
6
|
+
ENV["GEM_PATH"] ||= ""
|
7
|
+
ENV["GEM_PATH"] += ":#{Dir["tmp/isolate/ruby-*"].sort.last}"
|
8
|
+
Gem.paths = ENV
|
9
|
+
|
5
10
|
require "isolate/rake"
|
6
11
|
|
7
12
|
Hoe.plugin :isolate, :doofus, :git
|
@@ -18,9 +23,23 @@ Hoe.spec "isolate" do
|
|
18
23
|
self.history_file = "CHANGELOG.rdoc"
|
19
24
|
self.readme_file = "README.rdoc"
|
20
25
|
|
26
|
+
license "MIT"
|
27
|
+
|
28
|
+
# taken from hoe/seattlerb.rb to avoid loading perforce plugin
|
29
|
+
# REFACTOR: hoe/seattlerb.rb should just load plugins
|
30
|
+
base = "/data/www/docs.seattlerb.org"
|
31
|
+
rdoc_locations << "docs-push.seattlerb.org:#{base}/#{remote_rdoc_dir}"
|
32
|
+
|
21
33
|
dependency "hoe-seattlerb", "~> 1.2", :development
|
22
34
|
dependency "minitest", "~> 5.0", :development
|
23
35
|
dependency "hoe-doofus", "~> 1.0", :development
|
24
36
|
dependency "hoe-git", "~> 1.3", :development
|
25
37
|
dependency "ZenTest", "~> 4.5", :development
|
26
38
|
end
|
39
|
+
|
40
|
+
# allow for isolated dependencies
|
41
|
+
task :check_extra_deps => :isolate do
|
42
|
+
# but still install non-isolated
|
43
|
+
ENV.delete "GEM_HOME"
|
44
|
+
Gem.paths = ENV
|
45
|
+
end
|
data/lib/hoe/isolate.rb
CHANGED
@@ -46,7 +46,7 @@ class Hoe # :nodoc:
|
|
46
46
|
sandbox = ::Isolate.sandbox
|
47
47
|
|
48
48
|
# reset, now that they've had a chance to change it
|
49
|
-
sandbox.options :path => isolate_dir, :system =>
|
49
|
+
sandbox.options :path => isolate_dir, :system => true
|
50
50
|
|
51
51
|
task :isolate do
|
52
52
|
self.extra_deps.each do |name, version|
|
data/lib/isolate/sandbox.rb
CHANGED
@@ -43,6 +43,11 @@ module Isolate
|
|
43
43
|
@files = []
|
44
44
|
@options = options
|
45
45
|
|
46
|
+
path, name = options.values_at :path, :name
|
47
|
+
|
48
|
+
raise ArgumentError, "can't specify both name and path!" if name && path
|
49
|
+
options[:path] = File.expand_path("~/.gem/repos/#{name}") if name
|
50
|
+
|
46
51
|
fire :initializing
|
47
52
|
|
48
53
|
user = File.expand_path "~/.isolate/user.rb"
|
@@ -144,10 +149,13 @@ module Isolate
|
|
144
149
|
unless system?
|
145
150
|
isolate_lib = File.expand_path "../..", __FILE__
|
146
151
|
|
147
|
-
# manually deactivate pre-isolate gems...
|
148
|
-
$LOAD_PATH.reject!
|
149
|
-
|
150
|
-
|
152
|
+
# manually deactivate pre-isolate gems...
|
153
|
+
$LOAD_PATH.reject! { |lpath|
|
154
|
+
(lpath.start_with?("/") && # only full paths
|
155
|
+
lpath.end_with?("/lib") && # and that end in lib
|
156
|
+
lpath != isolate_lib &&
|
157
|
+
Gem.path.reject(&:empty?).any? { |gem_path| lpath.include?(gem_path) })
|
158
|
+
}
|
151
159
|
|
152
160
|
# HACK: Gotta keep isolate explicitly in the LOAD_PATH in
|
153
161
|
# subshells, and the only way I can think of to do that is by
|
@@ -218,6 +226,15 @@ module Isolate
|
|
218
226
|
def install environment # :nodoc:
|
219
227
|
fire :installing
|
220
228
|
|
229
|
+
install_missing environment
|
230
|
+
rebuild_extensions
|
231
|
+
|
232
|
+
fire :installed
|
233
|
+
|
234
|
+
self
|
235
|
+
end
|
236
|
+
|
237
|
+
def install_missing environment
|
221
238
|
installable = entries.select do |e|
|
222
239
|
!e.specification && e.matches?(environment)
|
223
240
|
end
|
@@ -233,10 +250,27 @@ module Isolate
|
|
233
250
|
|
234
251
|
Gem::Specification.reset
|
235
252
|
end
|
253
|
+
end
|
236
254
|
|
237
|
-
|
255
|
+
def rebuild_extensions
|
256
|
+
broken = entries.find_all { |e|
|
257
|
+
e.specification && e.specification.missing_extensions?
|
258
|
+
}
|
238
259
|
|
239
|
-
|
260
|
+
unless broken.empty?
|
261
|
+
padding = Math.log10(broken.size).to_i + 1
|
262
|
+
format = "[%0#{padding}d/%d] Building extensions for %s (ruby v%s)."
|
263
|
+
|
264
|
+
broken.each_with_index do |e, i|
|
265
|
+
spec = e.specification
|
266
|
+
log format % [i + 1, broken.size, e.name, RUBY_VERSION]
|
267
|
+
|
268
|
+
builder = Gem::Ext::Builder.new spec
|
269
|
+
builder.build_extensions
|
270
|
+
end
|
271
|
+
|
272
|
+
Gem::Specification.reset
|
273
|
+
end
|
240
274
|
end
|
241
275
|
|
242
276
|
def install? # :nodoc:
|
@@ -253,7 +287,7 @@ module Isolate
|
|
253
287
|
end
|
254
288
|
|
255
289
|
def multiruby?
|
256
|
-
@options.fetch :multiruby,
|
290
|
+
@options.fetch :multiruby, false
|
257
291
|
end
|
258
292
|
|
259
293
|
def options options = nil
|
@@ -264,7 +298,7 @@ module Isolate
|
|
264
298
|
def path
|
265
299
|
base = @options.fetch :path, DEFAULT_PATH
|
266
300
|
|
267
|
-
|
301
|
+
if multiruby? then
|
268
302
|
suffix = "#{Gem.ruby_engine}-#{RbConfig::CONFIG['ruby_version']}"
|
269
303
|
base = File.join(base, suffix) unless base =~ /#{suffix}/
|
270
304
|
end
|
data/lib/isolate.rb
CHANGED
@@ -8,7 +8,7 @@ module Isolate
|
|
8
8
|
|
9
9
|
# Duh.
|
10
10
|
|
11
|
-
VERSION = "3.
|
11
|
+
VERSION = "3.5.1"
|
12
12
|
|
13
13
|
# Disable Isolate. If a block is provided, isolation will be
|
14
14
|
# disabled for the scope of the block.
|
@@ -59,12 +59,14 @@ module Isolate
|
|
59
59
|
#
|
60
60
|
# :multiruby:: Should Isolate assume that multiple Ruby versions
|
61
61
|
# will be used simultaneously? If so, gems will be
|
62
|
-
# segregated by Ruby version. Default is +
|
62
|
+
# segregated by Ruby version. Default is +false+.
|
63
63
|
#
|
64
64
|
# :path:: Where should isolated gems be kept? Default is
|
65
65
|
# <tt>"tmp/isolate"</tt>, and a Ruby version specifier suffix
|
66
66
|
# will be added if <tt>:multiruby</tt> is +true+.
|
67
67
|
#
|
68
|
+
# :name:: Like path, but expands to: ~/.gem/repos/#{name}/ (like ohmygems)
|
69
|
+
#
|
68
70
|
# :system:: Should system gems be allowed to satisfy dependencies?
|
69
71
|
# Default is +true+.
|
70
72
|
#
|
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
|
|
23
23
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
24
24
|
s.specification_version = 2
|
25
25
|
|
26
|
-
if Gem::Version.new(Gem::
|
26
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
27
27
|
else
|
28
28
|
end
|
29
29
|
else
|
@@ -43,7 +43,7 @@ See class rdoc for help. Hint: ri Hoe}
|
|
43
43
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
44
44
|
s.specification_version = 3
|
45
45
|
|
46
|
-
if Gem::Version.new(Gem::
|
46
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
47
47
|
s.add_runtime_dependency(%q<rubyforge>, [">= 1.0.4"])
|
48
48
|
s.add_runtime_dependency(%q<rake>, [">= 0.8.7"])
|
49
49
|
else
|
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
|
|
23
23
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
24
24
|
s.specification_version = 2
|
25
25
|
|
26
|
-
if Gem::Version.new(Gem::
|
26
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
27
27
|
else
|
28
28
|
end
|
29
29
|
else
|
@@ -35,7 +35,7 @@ Gem::Specification.new do |s|
|
|
35
35
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
36
36
|
s.specification_version = 3
|
37
37
|
|
38
|
-
if Gem::Version.new(Gem::
|
38
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
39
39
|
else
|
40
40
|
end
|
41
41
|
else
|
@@ -294,7 +294,7 @@ class TestIsolateSandbox < Isolate::Test
|
|
294
294
|
assert s.install?
|
295
295
|
assert s.system?
|
296
296
|
assert s.verbose?
|
297
|
-
|
297
|
+
refute s.multiruby?
|
298
298
|
end
|
299
299
|
|
300
300
|
def test_initialize_override_defaults
|
@@ -331,22 +331,31 @@ class TestIsolateSandbox < Isolate::Test
|
|
331
331
|
assert_equal Gem::Requirement.new("2.0"), monkey.requirement
|
332
332
|
end
|
333
333
|
|
334
|
+
def test_initialize__name
|
335
|
+
exp = File.expand_path "~/.gem/repos/project_name"
|
336
|
+
|
337
|
+
outer = self
|
338
|
+
|
339
|
+
s = sandbox :name => "project_name" do |inner|
|
340
|
+
outer.assert_equal exp, inner.options[:path]
|
341
|
+
end
|
342
|
+
|
343
|
+
assert_equal exp, s.options[:path]
|
344
|
+
end
|
345
|
+
|
334
346
|
def test_options
|
335
347
|
@sandbox.options :hello => :monkey
|
336
348
|
assert_equal :monkey, @sandbox.options[:hello]
|
337
349
|
end
|
338
350
|
|
339
351
|
def test_path
|
340
|
-
s = sandbox :multiruby => false
|
341
|
-
options :path => "tmp/foo"
|
342
|
-
end
|
343
|
-
|
352
|
+
s = sandbox :multiruby => false, :path => "tmp/foo"
|
344
353
|
assert_equal File.expand_path("tmp/foo"), s.path
|
345
354
|
|
346
|
-
v = [Gem.ruby_engine, RbConfig::CONFIG["ruby_version"]]
|
347
|
-
s = sandbox :multiruby => true
|
355
|
+
v = "%s-%s" % [Gem.ruby_engine, RbConfig::CONFIG["ruby_version"]]
|
348
356
|
p = File.expand_path("tmp/test/#{v}")
|
349
357
|
|
358
|
+
s = sandbox :multiruby => true
|
350
359
|
assert_equal p, s.path
|
351
360
|
|
352
361
|
s = sandbox :path => "tmp/test/#{v}", :multiruby => false
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,20 +1,20 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: isolate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Davis
|
8
8
|
- Eric Hodel
|
9
9
|
- John Barnette
|
10
|
-
autorequire:
|
10
|
+
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain:
|
13
13
|
- |
|
14
14
|
-----BEGIN CERTIFICATE-----
|
15
|
-
|
15
|
+
MIIDPjCCAiagAwIBAgIBBjANBgkqhkiG9w0BAQsFADBFMRMwEQYDVQQDDApyeWFu
|
16
16
|
ZC1ydWJ5MRkwFwYKCZImiZPyLGQBGRYJemVuc3BpZGVyMRMwEQYKCZImiZPyLGQB
|
17
|
-
|
17
|
+
GRYDY29tMB4XDTIxMTIyMzIzMTkwNFoXDTIyMTIyMzIzMTkwNFowRTETMBEGA1UE
|
18
18
|
AwwKcnlhbmQtcnVieTEZMBcGCgmSJomT8ixkARkWCXplbnNwaWRlcjETMBEGCgmS
|
19
19
|
JomT8ixkARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALda
|
20
20
|
b9DCgK+627gPJkB6XfjZ1itoOQvpqH1EXScSaba9/S2VF22VYQbXU1xQXL/WzCkx
|
@@ -23,114 +23,120 @@ cert_chain:
|
|
23
23
|
GiadM9GHRaDiaxuX0cIUBj19T01mVE2iymf9I6bEsiayK/n6QujtyCbTWsAS9Rqt
|
24
24
|
qhtV7HJxNKuPj/JFH0D2cswvzznE/a5FOYO68g+YCuFi5L8wZuuM8zzdwjrWHqSV
|
25
25
|
gBEfoTEGr7Zii72cx+sCAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAw
|
26
|
-
HQYDVR0OBBYEFEfFe9md/r/tj/Wmwpy+MI8d9k/
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
26
|
+
HQYDVR0OBBYEFEfFe9md/r/tj/Wmwpy+MI8d9k/hMA0GCSqGSIb3DQEBCwUAA4IB
|
27
|
+
AQCKB5jfsuSnKb+t/Wrh3UpdkmX7TrEsjVmERC0pPqzQ5GQJgmEXDD7oMgaKXaAq
|
28
|
+
x2m+KSZDrqk7c8uho5OX6YMqg4KdxehfSLqqTZGoeV78qwf/jpPQZKTf+W9gUSJh
|
29
|
+
zsWpo4K50MP+QtdSbKXZwjAafpQ8hK0MnnZ/aeCsW9ov5vdXpYbf3dpg6ADXRGE7
|
30
|
+
lQY2y1tJ5/chqu6h7dQmnm2ABUqx9O+JcN9hbCYoA5i/EeubUEtFIh2w3SpO6YfB
|
31
|
+
JFmxn4h9YO/pVdB962BdBNNDia0kgIjI3ENnkLq0dKpYU3+F3KhEuTksLO0L6X/V
|
32
|
+
YsuyUzsMz6GQA4khyaMgKNSD
|
33
33
|
-----END CERTIFICATE-----
|
34
|
-
date:
|
34
|
+
date: 2022-06-15 00:00:00.000000000 Z
|
35
35
|
dependencies:
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
|
-
name:
|
38
|
-
requirement: !ruby/object:Gem::Requirement
|
39
|
-
requirements:
|
40
|
-
- - ~>
|
41
|
-
- !ruby/object:Gem::Version
|
42
|
-
version: '5.5'
|
43
|
-
type: :development
|
44
|
-
prerelease: false
|
45
|
-
version_requirements: !ruby/object:Gem::Requirement
|
46
|
-
requirements:
|
47
|
-
- - ~>
|
48
|
-
- !ruby/object:Gem::Version
|
49
|
-
version: '5.5'
|
50
|
-
- !ruby/object:Gem::Dependency
|
51
|
-
name: rdoc
|
37
|
+
name: hoe-seattlerb
|
52
38
|
requirement: !ruby/object:Gem::Requirement
|
53
39
|
requirements:
|
54
|
-
- - ~>
|
40
|
+
- - "~>"
|
55
41
|
- !ruby/object:Gem::Version
|
56
|
-
version: '
|
42
|
+
version: '1.2'
|
57
43
|
type: :development
|
58
44
|
prerelease: false
|
59
45
|
version_requirements: !ruby/object:Gem::Requirement
|
60
46
|
requirements:
|
61
|
-
- - ~>
|
47
|
+
- - "~>"
|
62
48
|
- !ruby/object:Gem::Version
|
63
|
-
version: '
|
49
|
+
version: '1.2'
|
64
50
|
- !ruby/object:Gem::Dependency
|
65
|
-
name:
|
51
|
+
name: minitest
|
66
52
|
requirement: !ruby/object:Gem::Requirement
|
67
53
|
requirements:
|
68
|
-
- - ~>
|
54
|
+
- - "~>"
|
69
55
|
- !ruby/object:Gem::Version
|
70
|
-
version: '
|
56
|
+
version: '5.0'
|
71
57
|
type: :development
|
72
58
|
prerelease: false
|
73
59
|
version_requirements: !ruby/object:Gem::Requirement
|
74
60
|
requirements:
|
75
|
-
- - ~>
|
61
|
+
- - "~>"
|
76
62
|
- !ruby/object:Gem::Version
|
77
|
-
version: '
|
63
|
+
version: '5.0'
|
78
64
|
- !ruby/object:Gem::Dependency
|
79
65
|
name: hoe-doofus
|
80
66
|
requirement: !ruby/object:Gem::Requirement
|
81
67
|
requirements:
|
82
|
-
- - ~>
|
68
|
+
- - "~>"
|
83
69
|
- !ruby/object:Gem::Version
|
84
70
|
version: '1.0'
|
85
71
|
type: :development
|
86
72
|
prerelease: false
|
87
73
|
version_requirements: !ruby/object:Gem::Requirement
|
88
74
|
requirements:
|
89
|
-
- - ~>
|
75
|
+
- - "~>"
|
90
76
|
- !ruby/object:Gem::Version
|
91
77
|
version: '1.0'
|
92
78
|
- !ruby/object:Gem::Dependency
|
93
79
|
name: hoe-git
|
94
80
|
requirement: !ruby/object:Gem::Requirement
|
95
81
|
requirements:
|
96
|
-
- - ~>
|
82
|
+
- - "~>"
|
97
83
|
- !ruby/object:Gem::Version
|
98
84
|
version: '1.3'
|
99
85
|
type: :development
|
100
86
|
prerelease: false
|
101
87
|
version_requirements: !ruby/object:Gem::Requirement
|
102
88
|
requirements:
|
103
|
-
- - ~>
|
89
|
+
- - "~>"
|
104
90
|
- !ruby/object:Gem::Version
|
105
91
|
version: '1.3'
|
106
92
|
- !ruby/object:Gem::Dependency
|
107
93
|
name: ZenTest
|
108
94
|
requirement: !ruby/object:Gem::Requirement
|
109
95
|
requirements:
|
110
|
-
- - ~>
|
96
|
+
- - "~>"
|
111
97
|
- !ruby/object:Gem::Version
|
112
98
|
version: '4.5'
|
113
99
|
type: :development
|
114
100
|
prerelease: false
|
115
101
|
version_requirements: !ruby/object:Gem::Requirement
|
116
102
|
requirements:
|
117
|
-
- - ~>
|
103
|
+
- - "~>"
|
118
104
|
- !ruby/object:Gem::Version
|
119
105
|
version: '4.5'
|
106
|
+
- !ruby/object:Gem::Dependency
|
107
|
+
name: rdoc
|
108
|
+
requirement: !ruby/object:Gem::Requirement
|
109
|
+
requirements:
|
110
|
+
- - ">="
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: '4.0'
|
113
|
+
- - "<"
|
114
|
+
- !ruby/object:Gem::Version
|
115
|
+
version: '7'
|
116
|
+
type: :development
|
117
|
+
prerelease: false
|
118
|
+
version_requirements: !ruby/object:Gem::Requirement
|
119
|
+
requirements:
|
120
|
+
- - ">="
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: '4.0'
|
123
|
+
- - "<"
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '7'
|
120
126
|
- !ruby/object:Gem::Dependency
|
121
127
|
name: hoe
|
122
128
|
requirement: !ruby/object:Gem::Requirement
|
123
129
|
requirements:
|
124
|
-
- - ~>
|
130
|
+
- - "~>"
|
125
131
|
- !ruby/object:Gem::Version
|
126
|
-
version: '3.
|
132
|
+
version: '3.23'
|
127
133
|
type: :development
|
128
134
|
prerelease: false
|
129
135
|
version_requirements: !ruby/object:Gem::Requirement
|
130
136
|
requirements:
|
131
|
-
- - ~>
|
137
|
+
- - "~>"
|
132
138
|
- !ruby/object:Gem::Version
|
133
|
-
version: '3.
|
139
|
+
version: '3.23'
|
134
140
|
description: |-
|
135
141
|
Isolate is a very simple RubyGems sandbox. It provides a way to
|
136
142
|
express and automatically install your project's Gem dependencies.
|
@@ -145,8 +151,7 @@ extra_rdoc_files:
|
|
145
151
|
- Manifest.txt
|
146
152
|
- README.rdoc
|
147
153
|
files:
|
148
|
-
- .autotest
|
149
|
-
- .gemtest
|
154
|
+
- ".autotest"
|
150
155
|
- CHANGELOG.rdoc
|
151
156
|
- Manifest.txt
|
152
157
|
- README.rdoc
|
@@ -177,31 +182,27 @@ files:
|
|
177
182
|
homepage: http://github.com/jbarnette/isolate
|
178
183
|
licenses:
|
179
184
|
- MIT
|
180
|
-
metadata:
|
181
|
-
|
185
|
+
metadata:
|
186
|
+
homepage_uri: http://github.com/jbarnette/isolate
|
187
|
+
post_install_message:
|
182
188
|
rdoc_options:
|
183
|
-
- --main
|
189
|
+
- "--main"
|
184
190
|
- README.rdoc
|
185
191
|
require_paths:
|
186
192
|
- lib
|
187
193
|
required_ruby_version: !ruby/object:Gem::Requirement
|
188
194
|
requirements:
|
189
|
-
- -
|
195
|
+
- - ">="
|
190
196
|
- !ruby/object:Gem::Version
|
191
197
|
version: '0'
|
192
198
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
193
199
|
requirements:
|
194
|
-
- -
|
200
|
+
- - ">="
|
195
201
|
- !ruby/object:Gem::Version
|
196
202
|
version: 1.8.2
|
197
203
|
requirements: []
|
198
|
-
|
199
|
-
|
200
|
-
signing_key:
|
204
|
+
rubygems_version: 3.3.12
|
205
|
+
signing_key:
|
201
206
|
specification_version: 4
|
202
207
|
summary: Isolate is a very simple RubyGems sandbox
|
203
|
-
test_files:
|
204
|
-
- test/test_isolate.rb
|
205
|
-
- test/test_isolate_entry.rb
|
206
|
-
- test/test_isolate_events.rb
|
207
|
-
- test/test_isolate_sandbox.rb
|
208
|
+
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|
data/.gemtest
DELETED
File without changes
|