free 0.2.6-i386-mswin32 → 0.2.7-i386-mswin32

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.
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 > 50K
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"
@@ -1,3 +1,3 @@
1
1
  module Free
2
- VERSION = "0.2.6"
2
+ VERSION = "0.2.7"
3
3
  end
@@ -2,6 +2,6 @@ require 'benchmark'
2
2
  require '../lib/free'
3
3
 
4
4
  TIMES = 900_00
5
- REPEATS = 50_000
5
+ SIZE_IN_BYTES = 10_000
6
6
 
7
- STR = "x" * REPEATS
7
+ STR = "x" * SIZE_IN_BYTES
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 6
9
- version: 0.2.6
8
+ - 7
9
+ version: 0.2.7
10
10
  platform: i386-mswin32
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