fspath 2.0.2 → 2.0.3
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/fspath.gemspec +1 -1
- data/lib/fspath.rb +1 -0
- data/spec/fspath_spec.rb +1 -1
- metadata +3 -3
data/fspath.gemspec
CHANGED
data/lib/fspath.rb
CHANGED
data/spec/fspath_spec.rb
CHANGED
@@ -58,7 +58,7 @@ describe FSPath do
|
|
58
58
|
end
|
59
59
|
|
60
60
|
it "should not allow GC to finalize TempFile" do
|
61
|
-
paths = Array.new(
|
61
|
+
paths = Array.new(1000){ FSPath.temp_file_path }
|
62
62
|
paths.should be_all(&:exist?)
|
63
63
|
GC.start
|
64
64
|
paths.should be_all(&:exist?)
|
metadata
CHANGED