isolate 1.8.1 → 1.8.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,8 @@
1
+ === 1.8.2 / 2010-01-13
2
+
3
+ * Don't include Isolate as a dependency in .gems.
4
+ * Tweak the README structure for clarity.
5
+
1
6
  === 1.8.1 / 2010-01-13
2
7
 
3
8
  * Allow isolate:dotgems to take an env.
@@ -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.
@@ -21,7 +21,7 @@ class Isolate
21
21
  end
22
22
  end
23
23
 
24
- VERSION = "1.8.1" # :nodoc:
24
+ VERSION = "1.8.2" # :nodoc:
25
25
 
26
26
  attr_reader :entries # :nodoc:
27
27
  attr_reader :path # :nodoc:
@@ -13,9 +13,6 @@ namespace :isolate do
13
13
 
14
14
  f.puts gems.join(" ")
15
15
  end
16
-
17
- # this above all: to thine own self be true
18
- f.puts "isolate --version '#{Isolate::VERSION}'"
19
16
  end
20
17
  end
21
18
 
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.1
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