isolate 1.8.1 → 1.8.2
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 +5 -0
- data/README.rdoc +2 -0
- data/lib/isolate.rb +1 -1
- data/lib/isolate/rake.rb +0 -3
- metadata +1 -20
data/CHANGELOG.rdoc
CHANGED
data/README.rdoc
CHANGED
@@ -7,6 +7,8 @@
|
|
7
7
|
Isolate is a very simple RubyGems sandbox. It provides a way to
|
8
8
|
express and install your code's Gem dependencies.
|
9
9
|
|
10
|
+
== How?
|
11
|
+
|
10
12
|
When Isolate runs, it uses GEM_HOME, GEM_PATH, and a few other tricks
|
11
13
|
to completely separate your code from the system's RubyGems
|
12
14
|
configuration, leaving it free to run in blissful solitude.
|
data/lib/isolate.rb
CHANGED
data/lib/isolate/rake.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.8.
|
4
|
+
version: 1.8.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Barnette
|
@@ -36,25 +36,6 @@ dependencies:
|
|
36
36
|
description: |-
|
37
37
|
Isolate is a very simple RubyGems sandbox. It provides a way to
|
38
38
|
express and install your code's Gem dependencies.
|
39
|
-
|
40
|
-
When Isolate runs, it uses GEM_HOME, GEM_PATH, and a few other tricks
|
41
|
-
to completely separate your code from the system's RubyGems
|
42
|
-
configuration, leaving it free to run in blissful solitude.
|
43
|
-
|
44
|
-
While Isolate doesn't make any assumptions about what sort of code
|
45
|
-
you're writing, it was extracted from a few Rails apps, so it's
|
46
|
-
naturally going to be most useful with stuff like Rails, Merb, or
|
47
|
-
Sinatra.
|
48
|
-
|
49
|
-
Isolate is very, very, very stupid simple. For a much more
|
50
|
-
full-featured Gem bundler, check out Yehuda Katz and Carl Lerche's
|
51
|
-
Bundler[http://github.com/wycats/bundler]: It does a lot of fancy AOT
|
52
|
-
dependency resolution, supports non-gem resources, and is probably a
|
53
|
-
better fit for you. For a widely used Gem manager and installer, check
|
54
|
-
out Chad Woolley's GemInstaller[http://geminstaller.rubyforge.org].
|
55
|
-
|
56
|
-
YMMV, but I haven't tried Isolate with anything older than RubyGems
|
57
|
-
1.3.5.
|
58
39
|
email:
|
59
40
|
- jbarnette@rubyforge.org
|
60
41
|
- ryand-ruby@zenspider.com
|