isolate 3.0.0 → 3.0.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/.autotest +4 -0
- data/.gemtest +0 -0
- data/CHANGELOG.rdoc +16 -0
- data/Rakefile +84 -4
- data/lib/hoe/isolate.rb +2 -0
- data/lib/isolate/entry.rb +19 -6
- data/lib/isolate/rake.rb +8 -14
- data/lib/isolate/sandbox.rb +39 -22
- data/lib/isolate.rb +9 -2
- data/test/fixtures/with-hoe/specifications/hoe-2.3.3.gemspec +0 -1
- data/test/fixtures/with-hoe/specifications/rake-0.8.7.gemspec +0 -1
- data/test/fixtures/with-hoe/specifications/rubyforge-1.0.4.gemspec +0 -1
- data/test/isolate/test.rb +5 -1
- data/test/test_isolate.rb +4 -1
- data/test/test_isolate_entry.rb +1 -1
- data/test/test_isolate_sandbox.rb +9 -4
- data.tar.gz.sig +1 -0
- metadata +78 -22
- metadata.gz.sig +0 -0
data/.autotest
CHANGED
data/.gemtest
ADDED
File without changes
|
data/CHANGELOG.rdoc
CHANGED
@@ -1,3 +1,19 @@
|
|
1
|
+
=== 3.0.1 / 2011-05-11
|
2
|
+
|
3
|
+
* 6 minor enhancements:
|
4
|
+
|
5
|
+
* Added Entry#to_s and #inspect to make it much more readable.
|
6
|
+
* Added Isolate.sandbox= and used it from Hoe::Isolate plugin.
|
7
|
+
* Deprecated Sandbox#index.
|
8
|
+
* Entry#specification now returns nil if it doesn't resolve to anything.
|
9
|
+
* Refactored Sandbox's default path so that tests won't collide with our Rakefile.
|
10
|
+
* We now require rubygems >= 1.8.2.
|
11
|
+
|
12
|
+
* 2 bug fixes:
|
13
|
+
|
14
|
+
* Cleaned up all warnings caused by rubygems 1.8 deprecations.
|
15
|
+
* Fixed Sandbox#legitimize! to properly deal with Gem::Dependency.
|
16
|
+
|
1
17
|
=== 3.0.0 / 2010-10-19
|
2
18
|
|
3
19
|
* Remove deprecated Isolate.{gems,instance} methods.
|
data/Rakefile
CHANGED
@@ -1,20 +1,100 @@
|
|
1
1
|
require "rubygems"
|
2
2
|
require "hoe"
|
3
3
|
|
4
|
+
$:.unshift "lib"
|
5
|
+
require "isolate/rake"
|
6
|
+
|
4
7
|
Hoe.plugins.delete :rubyforge
|
5
|
-
Hoe.plugin :doofus, :git
|
8
|
+
Hoe.plugin :isolate, :doofus, :git
|
6
9
|
|
7
10
|
Hoe.spec "isolate" do
|
8
11
|
developer "John Barnette", "code@jbarnette.com"
|
9
12
|
developer "Ryan Davis", "ryand-ruby@zenspider.com"
|
10
13
|
|
11
|
-
|
12
|
-
require_rubygems_version ">= 1.3.6"
|
14
|
+
require_rubygems_version ">= 1.8.2"
|
13
15
|
|
14
16
|
self.extra_rdoc_files = Dir["*.rdoc"]
|
15
17
|
self.history_file = "CHANGELOG.rdoc"
|
16
18
|
self.readme_file = "README.rdoc"
|
17
19
|
self.testlib = :minitest
|
18
20
|
|
19
|
-
|
21
|
+
dependency "minitest", "~> 2.1.0", :development
|
22
|
+
dependency "hoe-doofus", "~> 1.0.0", :development
|
23
|
+
dependency "hoe-git", "~> 1.3.0", :development
|
24
|
+
end
|
25
|
+
|
26
|
+
def changelog_section code
|
27
|
+
name = {
|
28
|
+
:major => "major enhancement",
|
29
|
+
:minor => "minor enhancement",
|
30
|
+
:bug => "bug fix",
|
31
|
+
:unknown => "unknown",
|
32
|
+
}[code]
|
33
|
+
|
34
|
+
changes = $changes[code]
|
35
|
+
count = changes.size
|
36
|
+
name += "s" if count > 1
|
37
|
+
name.sub!(/fixs/, 'fixes')
|
38
|
+
|
39
|
+
return if count < 1
|
40
|
+
|
41
|
+
puts "* #{count} #{name}:"
|
42
|
+
puts
|
43
|
+
changes.sort.each do |line|
|
44
|
+
puts " * #{line}"
|
45
|
+
end
|
46
|
+
puts
|
47
|
+
end
|
48
|
+
|
49
|
+
desc "Print the current changelog."
|
50
|
+
task "git:newchangelog" do
|
51
|
+
# This must be in here until rubygems depends on the version of hoe that has
|
52
|
+
# git_tags
|
53
|
+
# TODO: get this code back into hoe-git
|
54
|
+
module Hoe::Git
|
55
|
+
module_function :git_tags, :git_svn?, :git_release_tag_prefix
|
56
|
+
end
|
57
|
+
|
58
|
+
tag = ENV["FROM"] || Hoe::Git.git_tags.last
|
59
|
+
range = [tag, "HEAD"].compact.join ".."
|
60
|
+
cmd = "git log #{range} '--format=tformat:%B|||%aN|||%aE|||'"
|
61
|
+
now = Time.new.strftime "%Y-%m-%d"
|
62
|
+
|
63
|
+
changes = `#{cmd}`.split(/\|\|\|/).each_slice(3).map do |msg, author, email|
|
64
|
+
msg.split(/\n/).reject { |s| s.empty? }
|
65
|
+
end
|
66
|
+
|
67
|
+
changes = changes.flatten
|
68
|
+
|
69
|
+
next if changes.empty?
|
70
|
+
|
71
|
+
$changes = Hash.new { |h,k| h[k] = [] }
|
72
|
+
|
73
|
+
codes = {
|
74
|
+
"!" => :major,
|
75
|
+
"+" => :minor,
|
76
|
+
"*" => :minor,
|
77
|
+
"-" => :bug,
|
78
|
+
"?" => :unknown,
|
79
|
+
}
|
80
|
+
|
81
|
+
codes_re = Regexp.escape codes.keys.join
|
82
|
+
|
83
|
+
changes.each do |change|
|
84
|
+
if change =~ /^\s*([#{codes_re}])\s*(.*)/ then
|
85
|
+
code, line = codes[$1], $2
|
86
|
+
else
|
87
|
+
code, line = codes["?"], change.chomp
|
88
|
+
end
|
89
|
+
|
90
|
+
$changes[code] << line
|
91
|
+
end
|
92
|
+
|
93
|
+
puts "=== #{ENV['VERSION'] || 'NEXT'} / #{now}"
|
94
|
+
puts
|
95
|
+
changelog_section :major
|
96
|
+
changelog_section :minor
|
97
|
+
changelog_section :bug
|
98
|
+
changelog_section :unknown
|
99
|
+
puts
|
20
100
|
end
|
data/lib/hoe/isolate.rb
CHANGED
data/lib/isolate/entry.rb
CHANGED
@@ -67,7 +67,9 @@ module Isolate
|
|
67
67
|
|
68
68
|
def activate
|
69
69
|
fire :activating, :activated do
|
70
|
-
|
70
|
+
spec = self.specification
|
71
|
+
raise Gem::LoadError, "Couldn't resolve: #{self}" unless spec
|
72
|
+
spec.activate
|
71
73
|
end
|
72
74
|
end
|
73
75
|
|
@@ -79,9 +81,12 @@ module Isolate
|
|
79
81
|
|
80
82
|
begin
|
81
83
|
fire :installing, :installed do
|
82
|
-
|
83
|
-
|
84
|
-
:
|
84
|
+
|
85
|
+
installer =
|
86
|
+
Gem::DependencyInstaller.new(:development => false,
|
87
|
+
:generate_rdoc => false,
|
88
|
+
:generate_ri => false,
|
89
|
+
:install_dir => @sandbox.path)
|
85
90
|
|
86
91
|
Gem.sources += Array(options[:source]) if options[:source]
|
87
92
|
Gem::Command.build_args = Array(options[:args]) if options[:args]
|
@@ -107,10 +112,12 @@ module Isolate
|
|
107
112
|
name == spec.name and requirement.satisfied_by? spec.version
|
108
113
|
end
|
109
114
|
|
110
|
-
# The Gem::Specification for this entry.
|
115
|
+
# The Gem::Specification for this entry or nil if it isn't resolveable.
|
111
116
|
|
112
117
|
def specification
|
113
|
-
Gem.
|
118
|
+
Gem::Specification.find_by_name(name, requirement)
|
119
|
+
rescue Gem::LoadError
|
120
|
+
nil
|
114
121
|
end
|
115
122
|
|
116
123
|
# Updates this entry's environments, options, and
|
@@ -126,5 +133,11 @@ module Isolate
|
|
126
133
|
|
127
134
|
self
|
128
135
|
end
|
136
|
+
|
137
|
+
def to_s
|
138
|
+
"Entry[#{name.inspect}, #{requirement.to_s.inspect}]"
|
139
|
+
end
|
140
|
+
|
141
|
+
alias :inspect :to_s
|
129
142
|
end
|
130
143
|
end
|
data/lib/isolate/rake.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
require "isolate"
|
2
|
+
|
1
3
|
namespace :isolate do
|
2
4
|
desc "Show current isolated environment."
|
3
5
|
task :env do
|
@@ -48,22 +50,14 @@ namespace :isolate do
|
|
48
50
|
|
49
51
|
desc "Which isolated gems have updates available?"
|
50
52
|
task :stale do
|
51
|
-
require "rubygems/source_index"
|
52
|
-
require "rubygems/spec_fetcher"
|
53
|
-
|
54
|
-
index = Gem::SourceIndex.new
|
55
53
|
outdated = []
|
54
|
+
sandbox = Isolate.sandbox
|
55
|
+
outdated = sandbox.entries.reject { |entry| entry.specification }
|
56
56
|
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
outdated << entry
|
62
|
-
end
|
63
|
-
end
|
64
|
-
|
65
|
-
index.outdated.each do |name|
|
66
|
-
outdated << Isolate.sandbox.entries.find { |e| e.name == name }
|
57
|
+
Gem::Specification.outdated.each do |name|
|
58
|
+
entry = sandbox.entries.find { |e| e.name == name }
|
59
|
+
next unless entry
|
60
|
+
outdated << entry
|
67
61
|
end
|
68
62
|
|
69
63
|
outdated.sort_by { |e| e.name }.each do |entry|
|
data/lib/isolate/sandbox.rb
CHANGED
@@ -4,6 +4,7 @@ require "isolate/events"
|
|
4
4
|
require "rbconfig"
|
5
5
|
require "rubygems/defaults"
|
6
6
|
require "rubygems/uninstaller"
|
7
|
+
require "rubygems/deprecate"
|
7
8
|
|
8
9
|
module Isolate
|
9
10
|
|
@@ -13,6 +14,8 @@ module Isolate
|
|
13
14
|
class Sandbox
|
14
15
|
include Events
|
15
16
|
|
17
|
+
DEFAULT_PATH = "tmp/isolate" # :nodoc:
|
18
|
+
|
16
19
|
attr_reader :entries # :nodoc:
|
17
20
|
attr_reader :environments # :nodoc:
|
18
21
|
attr_reader :files # :nodoc:
|
@@ -83,7 +86,7 @@ module Isolate
|
|
83
86
|
def cleanup # :nodoc:
|
84
87
|
fire :cleaning
|
85
88
|
|
86
|
-
installed =
|
89
|
+
installed = Gem::Specification.map
|
87
90
|
legit = legitimize!
|
88
91
|
extra = installed - legit
|
89
92
|
|
@@ -95,11 +98,13 @@ module Isolate
|
|
95
98
|
log format % [i + 1, extra.size, e.full_name]
|
96
99
|
|
97
100
|
Gem::DefaultUserInteraction.use_ui Gem::SilentUI.new do
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
101
|
+
uninstaller =
|
102
|
+
Gem::Uninstaller.new(e.name,
|
103
|
+
:version => e.version,
|
104
|
+
:ignore => true,
|
105
|
+
:executables => true,
|
106
|
+
:install_dir => path)
|
107
|
+
uninstaller.uninstall
|
103
108
|
end
|
104
109
|
end
|
105
110
|
end
|
@@ -135,24 +140,25 @@ module Isolate
|
|
135
140
|
@old_env = ENV.to_hash
|
136
141
|
@old_load_path = $LOAD_PATH.dup
|
137
142
|
|
143
|
+
path = self.path
|
144
|
+
|
138
145
|
FileUtils.mkdir_p path
|
139
146
|
ENV["GEM_HOME"] = path
|
140
147
|
|
141
|
-
lib = File.expand_path "../..", __FILE__
|
142
|
-
|
143
148
|
unless system?
|
149
|
+
isolate_lib = File.expand_path "../..", __FILE__
|
150
|
+
|
151
|
+
# manually deactivate pre-isolate gems... is this just for 1.9.1?
|
144
152
|
$LOAD_PATH.reject! do |p|
|
145
|
-
p !=
|
153
|
+
p != isolate_lib && Gem.path.any? { |gp| p.include?(gp) }
|
146
154
|
end
|
147
155
|
|
148
156
|
# HACK: Gotta keep isolate explicitly in the LOAD_PATH in
|
149
157
|
# subshells, and the only way I can think of to do that is by
|
150
158
|
# abusing RUBYOPT.
|
151
159
|
|
152
|
-
|
153
|
-
|
154
|
-
unless ENV["RUBYOPT"] =~ /\s+-I\s*#{lib}\b/
|
155
|
-
ENV["RUBYOPT"] = "#{ENV['RUBYOPT']} -I#{lib}"
|
160
|
+
unless ENV["RUBYOPT"] =~ /\s+-I\s*#{Regexp.escape isolate_lib}\b/
|
161
|
+
ENV["RUBYOPT"] = "#{ENV['RUBYOPT']} -I#{isolate_lib}"
|
156
162
|
end
|
157
163
|
|
158
164
|
ENV["GEM_PATH"] = path
|
@@ -214,8 +220,7 @@ module Isolate
|
|
214
220
|
fire :installing
|
215
221
|
|
216
222
|
installable = entries.select do |e|
|
217
|
-
|
218
|
-
e.matches?(environment)
|
223
|
+
not e.specification && e.matches?(environment)
|
219
224
|
end
|
220
225
|
|
221
226
|
unless installable.empty?
|
@@ -227,8 +232,7 @@ module Isolate
|
|
227
232
|
entry.install
|
228
233
|
end
|
229
234
|
|
230
|
-
|
231
|
-
Gem.source_index.refresh!
|
235
|
+
Gem::Specification.reset
|
232
236
|
end
|
233
237
|
|
234
238
|
fire :installed
|
@@ -249,7 +253,6 @@ module Isolate
|
|
249
253
|
$stderr.puts s if verbose?
|
250
254
|
end
|
251
255
|
|
252
|
-
|
253
256
|
def multiruby?
|
254
257
|
@options.fetch :multiruby, true
|
255
258
|
end
|
@@ -260,7 +263,7 @@ module Isolate
|
|
260
263
|
end
|
261
264
|
|
262
265
|
def path
|
263
|
-
base = @options.fetch :path,
|
266
|
+
base = @options.fetch :path, DEFAULT_PATH
|
264
267
|
|
265
268
|
unless @options.key?(:multiruby) && @options[:multiruby] == false
|
266
269
|
suffix = "#{Gem.ruby_engine}-#{RbConfig::CONFIG['ruby_version']}"
|
@@ -289,9 +292,20 @@ module Isolate
|
|
289
292
|
specs = []
|
290
293
|
|
291
294
|
deps.flatten.each do |dep|
|
292
|
-
spec =
|
293
|
-
|
294
|
-
|
295
|
+
spec = case dep
|
296
|
+
when Gem::Dependency then
|
297
|
+
begin
|
298
|
+
dep.to_spec
|
299
|
+
rescue Gem::LoadError
|
300
|
+
nil
|
301
|
+
end
|
302
|
+
when Isolate::Entry then
|
303
|
+
dep.specification
|
304
|
+
else
|
305
|
+
raise "unknown dep: #{dep.inspect}"
|
306
|
+
end
|
307
|
+
|
308
|
+
if spec then
|
295
309
|
specs.concat legitimize!(spec.runtime_dependencies)
|
296
310
|
specs << spec
|
297
311
|
end
|
@@ -299,5 +313,8 @@ module Isolate
|
|
299
313
|
|
300
314
|
specs.uniq
|
301
315
|
end
|
316
|
+
|
317
|
+
extend Deprecate
|
318
|
+
deprecate :index, :none, 2011, 11
|
302
319
|
end
|
303
320
|
end
|
data/lib/isolate.rb
CHANGED
@@ -8,7 +8,7 @@ module Isolate
|
|
8
8
|
|
9
9
|
# Duh.
|
10
10
|
|
11
|
-
VERSION = "3.0.
|
11
|
+
VERSION = "3.0.1"
|
12
12
|
|
13
13
|
# Disable Isolate. If a block is provided, isolation will be
|
14
14
|
# disabled for the scope of the block.
|
@@ -34,6 +34,13 @@ module Isolate
|
|
34
34
|
@@sandbox
|
35
35
|
end
|
36
36
|
|
37
|
+
# Set the singleton. Intended for Hoe::Isolate and other tools that
|
38
|
+
# make their own.
|
39
|
+
|
40
|
+
def self.sandbox= o
|
41
|
+
@@sandbox = o
|
42
|
+
end
|
43
|
+
|
37
44
|
# Declare an isolated RubyGems environment, installed in +path+. Any
|
38
45
|
# block given will be <tt>instance_eval</tt>ed, see
|
39
46
|
# Isolate::Sandbox#gem and Isolate::Sandbox#environment for the sort
|
@@ -75,6 +82,6 @@ module Isolate
|
|
75
82
|
def self.refresh # :nodoc:
|
76
83
|
Gem.loaded_specs.clear
|
77
84
|
Gem.clear_paths
|
78
|
-
Gem.
|
85
|
+
Gem::Specification.reset
|
79
86
|
end
|
80
87
|
end
|
@@ -7,7 +7,6 @@ Gem::Specification.new do |s|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.3.1") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Ryan Davis"]
|
9
9
|
s.date = %q{2009-08-07}
|
10
|
-
s.default_executable = %q{sow}
|
11
10
|
s.description = %q{Hoe is a rake/rubygems helper for project Rakefiles. It helps generate
|
12
11
|
rubygems and includes a dynamic plug-in system allowing for easy
|
13
12
|
extensibility. Hoe ships with plug-ins for all your usual project
|
@@ -7,7 +7,6 @@ Gem::Specification.new do |s|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Jim Weirich"]
|
9
9
|
s.date = %q{2009-05-14}
|
10
|
-
s.default_executable = %q{rake}
|
11
10
|
s.description = %q{Rake is a Make-like program implemented in Ruby. Tasks and dependencies are specified in standard Ruby syntax.}
|
12
11
|
s.email = %q{jim@weirichhouse.org}
|
13
12
|
s.executables = ["rake"]
|
@@ -7,7 +7,6 @@ Gem::Specification.new do |s|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Ryan Davis", "Eric Hodel", "Ara T Howard"]
|
9
9
|
s.date = %q{2009-07-21}
|
10
|
-
s.default_executable = %q{rubyforge}
|
11
10
|
s.description = %q{A script which automates a limited set of rubyforge operations.
|
12
11
|
|
13
12
|
* Run 'rubyforge help' for complete usage.
|
data/test/isolate/test.rb
CHANGED
@@ -1,7 +1,11 @@
|
|
1
1
|
require "isolate"
|
2
2
|
require "minitest/autorun"
|
3
3
|
|
4
|
+
ENV.delete "RUBYOPT" # Rakefile uses isolate, so we don't want this
|
5
|
+
|
4
6
|
module Isolate
|
7
|
+
Sandbox::DEFAULT_PATH.replace "tmp/test" # change isolate dir for testing
|
8
|
+
|
5
9
|
class Test < MiniTest::Unit::TestCase
|
6
10
|
def setup
|
7
11
|
Isolate.refresh
|
@@ -19,7 +23,7 @@ module Isolate
|
|
19
23
|
$LOAD_PATH.replace @lp
|
20
24
|
$LOADED_FEATURES.replace @lf
|
21
25
|
|
22
|
-
FileUtils.rm_rf "tmp/
|
26
|
+
FileUtils.rm_rf "tmp/test"
|
23
27
|
end
|
24
28
|
end
|
25
29
|
end
|
data/test/test_isolate.rb
CHANGED
@@ -31,7 +31,10 @@ class TestIsolate < Isolate::Test
|
|
31
31
|
def test_self_now!
|
32
32
|
assert_nil Isolate.sandbox
|
33
33
|
|
34
|
-
Isolate.now!
|
34
|
+
Isolate.now!(:path => WITH_HOE,
|
35
|
+
:multiruby => false,
|
36
|
+
:system => false,
|
37
|
+
:verbose => false) do
|
35
38
|
gem "hoe"
|
36
39
|
end
|
37
40
|
|
data/test/test_isolate_entry.rb
CHANGED
@@ -57,7 +57,10 @@ class TestIsolateSandbox < Isolate::Test
|
|
57
57
|
|
58
58
|
def test_cleanup
|
59
59
|
s = sandbox :path => WITH_HOE, :install => true, :cleanup => true
|
60
|
-
|
60
|
+
|
61
|
+
assert_silent do
|
62
|
+
s.activate # no gems on purpose
|
63
|
+
end
|
61
64
|
|
62
65
|
expected = [["hoe", "2.3.3", WITH_HOE],
|
63
66
|
["rake", "0.8.7", WITH_HOE],
|
@@ -113,6 +116,8 @@ class TestIsolateSandbox < Isolate::Test
|
|
113
116
|
end
|
114
117
|
|
115
118
|
def test_idempotent_rubyopt_env
|
119
|
+
assert_nil ENV["RUBYOPT"], "sanity check to make sure ENV isn't infecting"
|
120
|
+
|
116
121
|
@sandbox.enable
|
117
122
|
rubyopt = ENV["RUBYOPT"]
|
118
123
|
@sandbox.disable
|
@@ -189,7 +194,7 @@ class TestIsolateSandbox < Isolate::Test
|
|
189
194
|
|
190
195
|
assert_equal [], s.entries
|
191
196
|
assert_equal [], s.environments
|
192
|
-
assert_match(/tmp\/
|
197
|
+
assert_match(/tmp\/test/, s.path)
|
193
198
|
|
194
199
|
assert s.cleanup?
|
195
200
|
assert s.install?
|
@@ -243,11 +248,11 @@ class TestIsolateSandbox < Isolate::Test
|
|
243
248
|
|
244
249
|
v = [Gem.ruby_engine, RbConfig::CONFIG["ruby_version"]].join "-"
|
245
250
|
s = sandbox :multiruby => true
|
246
|
-
p = File.expand_path("tmp/
|
251
|
+
p = File.expand_path("tmp/test/#{v}")
|
247
252
|
|
248
253
|
assert_equal p, s.path
|
249
254
|
|
250
|
-
s = sandbox :path => "tmp/
|
255
|
+
s = sandbox :path => "tmp/test/#{v}", :multiruby => false
|
251
256
|
assert_equal p, s.path
|
252
257
|
end
|
253
258
|
|
data.tar.gz.sig
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
��&n̲wI^ȓ]����@���j�茺?"[m�A�-��;4�@?%|��c,:����^
|
metadata
CHANGED
@@ -1,22 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: isolate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 5
|
5
|
+
prerelease:
|
5
6
|
segments:
|
6
7
|
- 3
|
7
8
|
- 0
|
8
|
-
-
|
9
|
-
version: 3.0.
|
9
|
+
- 1
|
10
|
+
version: 3.0.1
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- John Barnette
|
13
14
|
- Ryan Davis
|
14
15
|
autorequire:
|
15
16
|
bindir: bin
|
16
|
-
cert_chain:
|
17
|
+
cert_chain:
|
18
|
+
- |
|
19
|
+
-----BEGIN CERTIFICATE-----
|
20
|
+
MIIDPjCCAiagAwIBAgIBADANBgkqhkiG9w0BAQUFADBFMRMwEQYDVQQDDApyeWFu
|
21
|
+
ZC1ydWJ5MRkwFwYKCZImiZPyLGQBGRYJemVuc3BpZGVyMRMwEQYKCZImiZPyLGQB
|
22
|
+
GRYDY29tMB4XDTA5MDMwNjE4NTMxNVoXDTEwMDMwNjE4NTMxNVowRTETMBEGA1UE
|
23
|
+
AwwKcnlhbmQtcnVieTEZMBcGCgmSJomT8ixkARkWCXplbnNwaWRlcjETMBEGCgmS
|
24
|
+
JomT8ixkARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALda
|
25
|
+
b9DCgK+627gPJkB6XfjZ1itoOQvpqH1EXScSaba9/S2VF22VYQbXU1xQXL/WzCkx
|
26
|
+
taCPaLmfYIaFcHHCSY4hYDJijRQkLxPeB3xbOfzfLoBDbjvx5JxgJxUjmGa7xhcT
|
27
|
+
oOvjtt5P8+GSK9zLzxQP0gVLS/D0FmoE44XuDr3iQkVS2ujU5zZL84mMNqNB1znh
|
28
|
+
GiadM9GHRaDiaxuX0cIUBj19T01mVE2iymf9I6bEsiayK/n6QujtyCbTWsAS9Rqt
|
29
|
+
qhtV7HJxNKuPj/JFH0D2cswvzznE/a5FOYO68g+YCuFi5L8wZuuM8zzdwjrWHqSV
|
30
|
+
gBEfoTEGr7Zii72cx+sCAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAw
|
31
|
+
HQYDVR0OBBYEFEfFe9md/r/tj/Wmwpy+MI8d9k/hMA0GCSqGSIb3DQEBBQUAA4IB
|
32
|
+
AQAY59gYvDxqSqgC92nAP9P8dnGgfZgLxP237xS6XxFGJSghdz/nI6pusfCWKM8m
|
33
|
+
vzjjH2wUMSSf3tNudQ3rCGLf2epkcU13/rguI88wO6MrE0wi4ZqLQX+eZQFskJb/
|
34
|
+
w6x9W1ur8eR01s397LSMexySDBrJOh34cm2AlfKr/jokKCTwcM0OvVZnAutaovC0
|
35
|
+
l1SVZ0ecg88bsWHA0Yhh7NFxK1utWoIhtB6AFC/+trM0FQEB/jZkIS8SaNzn96Rl
|
36
|
+
n0sZEf77FLf5peR8TP/PtmIg7Cyqz23sLM4mCOoTGIy5OcZ8TdyiyINUHtb5ej/T
|
37
|
+
FBHgymkyj/AOSqKRIpXPhjC6
|
38
|
+
-----END CERTIFICATE-----
|
17
39
|
|
18
|
-
date:
|
19
|
-
default_executable:
|
40
|
+
date: 2011-05-13 00:00:00 Z
|
20
41
|
dependencies:
|
21
42
|
- !ruby/object:Gem::Dependency
|
22
43
|
name: minitest
|
@@ -26,27 +47,62 @@ dependencies:
|
|
26
47
|
requirements:
|
27
48
|
- - ~>
|
28
49
|
- !ruby/object:Gem::Version
|
50
|
+
hash: 11
|
29
51
|
segments:
|
52
|
+
- 2
|
30
53
|
- 1
|
31
|
-
-
|
32
|
-
version:
|
54
|
+
- 0
|
55
|
+
version: 2.1.0
|
33
56
|
type: :development
|
34
57
|
version_requirements: *id001
|
35
58
|
- !ruby/object:Gem::Dependency
|
36
|
-
name: hoe
|
59
|
+
name: hoe-doofus
|
37
60
|
prerelease: false
|
38
61
|
requirement: &id002 !ruby/object:Gem::Requirement
|
62
|
+
none: false
|
63
|
+
requirements:
|
64
|
+
- - ~>
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
hash: 23
|
67
|
+
segments:
|
68
|
+
- 1
|
69
|
+
- 0
|
70
|
+
- 0
|
71
|
+
version: 1.0.0
|
72
|
+
type: :development
|
73
|
+
version_requirements: *id002
|
74
|
+
- !ruby/object:Gem::Dependency
|
75
|
+
name: hoe-git
|
76
|
+
prerelease: false
|
77
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
78
|
+
none: false
|
79
|
+
requirements:
|
80
|
+
- - ~>
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
hash: 27
|
83
|
+
segments:
|
84
|
+
- 1
|
85
|
+
- 3
|
86
|
+
- 0
|
87
|
+
version: 1.3.0
|
88
|
+
type: :development
|
89
|
+
version_requirements: *id003
|
90
|
+
- !ruby/object:Gem::Dependency
|
91
|
+
name: hoe
|
92
|
+
prerelease: false
|
93
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
39
94
|
none: false
|
40
95
|
requirements:
|
41
96
|
- - ">="
|
42
97
|
- !ruby/object:Gem::Version
|
98
|
+
hash: 35
|
43
99
|
segments:
|
44
100
|
- 2
|
45
|
-
-
|
46
|
-
-
|
47
|
-
version: 2.
|
101
|
+
- 9
|
102
|
+
- 4
|
103
|
+
version: 2.9.4
|
48
104
|
type: :development
|
49
|
-
version_requirements: *
|
105
|
+
version_requirements: *id004
|
50
106
|
description: |-
|
51
107
|
Isolate is a very simple RubyGems sandbox. It provides a way to
|
52
108
|
express and automatically install your project's Gem dependencies.
|
@@ -86,7 +142,7 @@ files:
|
|
86
142
|
- test/test_isolate_entry.rb
|
87
143
|
- test/test_isolate_events.rb
|
88
144
|
- test/test_isolate_sandbox.rb
|
89
|
-
|
145
|
+
- .gemtest
|
90
146
|
homepage: http://github.com/jbarnette/isolate
|
91
147
|
licenses: []
|
92
148
|
|
@@ -101,25 +157,25 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
101
157
|
requirements:
|
102
158
|
- - ">="
|
103
159
|
- !ruby/object:Gem::Version
|
160
|
+
hash: 3
|
104
161
|
segments:
|
105
|
-
-
|
106
|
-
|
107
|
-
- 6
|
108
|
-
version: 1.8.6
|
162
|
+
- 0
|
163
|
+
version: "0"
|
109
164
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
110
165
|
none: false
|
111
166
|
requirements:
|
112
167
|
- - ">="
|
113
168
|
- !ruby/object:Gem::Version
|
169
|
+
hash: 51
|
114
170
|
segments:
|
115
171
|
- 1
|
116
|
-
-
|
117
|
-
-
|
118
|
-
version: 1.
|
172
|
+
- 8
|
173
|
+
- 2
|
174
|
+
version: 1.8.2
|
119
175
|
requirements: []
|
120
176
|
|
121
177
|
rubyforge_project: isolate
|
122
|
-
rubygems_version: 1.
|
178
|
+
rubygems_version: 1.8.2
|
123
179
|
signing_key:
|
124
180
|
specification_version: 3
|
125
181
|
summary: Isolate is a very simple RubyGems sandbox
|
metadata.gz.sig
ADDED
Binary file
|