free 0.2.6-i386-mingw32 → 0.2.7-i386-mingw32
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/.gemtest +0 -0
- data/README.md +1 -1
- data/Rakefile +1 -1
- data/lib/free/version.rb +1 -1
- data/test/bench_base.rb +2 -2
- metadata +3 -2
data/.gemtest
ADDED
File without changes
|
data/README.md
CHANGED
@@ -71,7 +71,7 @@ Features and limitations
|
|
71
71
|
### Caveats
|
72
72
|
|
73
73
|
Benchmarks have shown that `free` can significantly improve performance, but only
|
74
|
-
when the objects you free are very large (approximately >
|
74
|
+
when the objects you free are very large (approximately > 10K
|
75
75
|
in size).
|
76
76
|
|
77
77
|
It is not recommended you free small or medium-sized objects as you will
|
data/Rakefile
CHANGED
@@ -25,7 +25,7 @@ def apply_spec_defaults(s)
|
|
25
25
|
s.homepage = "http://banisterfiend.wordpress.com"
|
26
26
|
s.has_rdoc = 'yard'
|
27
27
|
s.files = Dir["ext/**/extconf.rb", "ext/**/*.h", "ext/**/*.c", "lib/**/*.rb",
|
28
|
-
"test/*.rb", "HISTORY", "README.md", "Rakefile"]
|
28
|
+
"test/*.rb", "HISTORY", "README.md", "Rakefile", ".gemtest"]
|
29
29
|
end
|
30
30
|
|
31
31
|
desc "run tests"
|
data/lib/free/version.rb
CHANGED
data/test/bench_base.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 2
|
8
|
-
-
|
9
|
-
version: 0.2.
|
8
|
+
- 7
|
9
|
+
version: 0.2.7
|
10
10
|
platform: i386-mingw32
|
11
11
|
authors:
|
12
12
|
- John Mair (banisterfiend)
|
@@ -74,6 +74,7 @@ files:
|
|
74
74
|
- HISTORY
|
75
75
|
- README.md
|
76
76
|
- Rakefile
|
77
|
+
- .gemtest
|
77
78
|
- lib/1.8/free.so
|
78
79
|
- lib/1.9/free.so
|
79
80
|
has_rdoc: yard
|