isolate 1.2.0 → 1.2.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/CHANGELOG.rdoc +5 -0
- data/lib/hoe/isolate.rb +2 -2
- data/lib/isolate.rb +2 -2
- metadata +1 -1
data/CHANGELOG.rdoc
CHANGED
data/lib/hoe/isolate.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
require "rubygems"
|
|
2
2
|
require "isolate"
|
|
3
3
|
|
|
4
|
-
|
|
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|
|
data/lib/isolate.rb
CHANGED
|
@@ -16,7 +16,7 @@ class Isolate
|
|
|
16
16
|
end
|
|
17
17
|
end
|
|
18
18
|
|
|
19
|
-
VERSION = "1.2.
|
|
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
|
-
|
|
156
|
+
entries << entry
|
|
157
157
|
entry
|
|
158
158
|
end
|
|
159
159
|
|