isolate 1.10.2 → 2.0.0.pre.0
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 +28 -0
- data/Manifest.txt +8 -0
- data/README.rdoc +29 -39
- data/Rakefile +3 -0
- data/lib/hoe/isolate.rb +3 -3
- data/lib/isolate.rb +20 -261
- data/lib/isolate/entry.rb +107 -0
- data/lib/isolate/now.rb +2 -0
- data/lib/isolate/rake.rb +35 -10
- data/lib/isolate/sandbox.rb +256 -0
- data/test/fixtures/blort-0.0.gem +0 -0
- data/test/fixtures/override.rb +1 -0
- data/test/fixtures/override.rb.local +3 -0
- data/test/isolate/test.rb +53 -0
- data/test/test_isolate.rb +11 -241
- data/test/test_isolate_entry.rb +86 -0
- data/test/test_isolate_sandbox.rb +275 -0
- metadata +28 -12
metadata
CHANGED
@@ -1,13 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: isolate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 1923832041
|
5
|
+
prerelease: true
|
6
6
|
segments:
|
7
|
-
- 1
|
8
|
-
- 10
|
9
7
|
- 2
|
10
|
-
|
8
|
+
- 0
|
9
|
+
- 0
|
10
|
+
- pre
|
11
|
+
- 0
|
12
|
+
version: 2.0.0.pre.0
|
11
13
|
platform: ruby
|
12
14
|
authors:
|
13
15
|
- John Barnette
|
@@ -16,7 +18,7 @@ autorequire:
|
|
16
18
|
bindir: bin
|
17
19
|
cert_chain: []
|
18
20
|
|
19
|
-
date: 2010-04-
|
21
|
+
date: 2010-04-27 00:00:00 -07:00
|
20
22
|
default_executable:
|
21
23
|
dependencies:
|
22
24
|
- !ruby/object:Gem::Dependency
|
@@ -88,13 +90,21 @@ files:
|
|
88
90
|
- Rakefile
|
89
91
|
- lib/hoe/isolate.rb
|
90
92
|
- lib/isolate.rb
|
93
|
+
- lib/isolate/entry.rb
|
91
94
|
- lib/isolate/now.rb
|
92
95
|
- lib/isolate/rake.rb
|
96
|
+
- lib/isolate/sandbox.rb
|
97
|
+
- test/fixtures/blort-0.0.gem
|
93
98
|
- test/fixtures/isolate.rb
|
99
|
+
- test/fixtures/override.rb
|
100
|
+
- test/fixtures/override.rb.local
|
94
101
|
- test/fixtures/with-hoe/specifications/hoe-2.3.3.gemspec
|
95
102
|
- test/fixtures/with-hoe/specifications/rake-0.8.7.gemspec
|
96
103
|
- test/fixtures/with-hoe/specifications/rubyforge-1.0.4.gemspec
|
104
|
+
- test/isolate/test.rb
|
97
105
|
- test/test_isolate.rb
|
106
|
+
- test/test_isolate_entry.rb
|
107
|
+
- test/test_isolate_sandbox.rb
|
98
108
|
has_rdoc: true
|
99
109
|
homepage: http://github.com/jbarnette/isolate
|
100
110
|
licenses: []
|
@@ -110,19 +120,23 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
110
120
|
requirements:
|
111
121
|
- - ">="
|
112
122
|
- !ruby/object:Gem::Version
|
113
|
-
hash:
|
123
|
+
hash: 57
|
114
124
|
segments:
|
115
|
-
-
|
116
|
-
|
125
|
+
- 1
|
126
|
+
- 8
|
127
|
+
- 7
|
128
|
+
version: 1.8.7
|
117
129
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
118
130
|
none: false
|
119
131
|
requirements:
|
120
132
|
- - ">="
|
121
133
|
- !ruby/object:Gem::Version
|
122
|
-
hash:
|
134
|
+
hash: 23
|
123
135
|
segments:
|
124
|
-
-
|
125
|
-
|
136
|
+
- 1
|
137
|
+
- 3
|
138
|
+
- 6
|
139
|
+
version: 1.3.6
|
126
140
|
requirements: []
|
127
141
|
|
128
142
|
rubyforge_project: isolate
|
@@ -132,3 +146,5 @@ specification_version: 3
|
|
132
146
|
summary: Isolate is a very simple RubyGems sandbox
|
133
147
|
test_files:
|
134
148
|
- test/test_isolate.rb
|
149
|
+
- test/test_isolate_entry.rb
|
150
|
+
- test/test_isolate_sandbox.rb
|