isolate 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,8 @@
1
+ === 1.2.1 / 2009-09-22
2
+
3
+ * I am a moron. Made the Hoe plugin work again.
4
+ * Be consistent about accessors vs ivars. [Review by Scott W]
5
+
1
6
  === 1.2.0 / 2009-09-22
2
7
 
3
8
  * Added a Hoe plugin.
@@ -1,7 +1,7 @@
1
1
  require "rubygems"
2
2
  require "isolate"
3
3
 
4
- module Hoe # :nodoc:
4
+ class Hoe # :nodoc:
5
5
 
6
6
  # This module is a Hoe plugin. You can set its attributes in your
7
7
  # Rakefile's Hoe spec, like this:
@@ -29,7 +29,7 @@ module Hoe # :nodoc:
29
29
  end
30
30
 
31
31
  def define_isolate_tasks # :nodoc:
32
- i = Isolate.new self.isolate_dir
32
+ i = ::Isolate.new self.isolate_dir
33
33
 
34
34
  # TODO: consider sneakily adding test lib deps if they don't exist
35
35
  (self.extra_deps + self.extra_dev_deps).each do |name, version|
@@ -16,7 +16,7 @@ class Isolate
16
16
  end
17
17
  end
18
18
 
19
- VERSION = "1.2.0" # :nodoc:
19
+ VERSION = "1.2.1" # :nodoc:
20
20
 
21
21
  attr_reader :entries # :nodoc:
22
22
 
@@ -153,7 +153,7 @@ class Isolate
153
153
 
154
154
  entry = Entry.new name, requirement, @environments.dup, options
155
155
 
156
- @entries << entry
156
+ entries << entry
157
157
  entry
158
158
  end
159
159
 
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.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Barnette