benelux 0.5.10 → 0.5.11

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.
Files changed (4) hide show
  1. data/CHANGES.txt +5 -1
  2. data/benelux.gemspec +1 -1
  3. data/lib/benelux.rb +2 -2
  4. metadata +1 -1
data/CHANGES.txt CHANGED
@@ -1,6 +1,10 @@
1
1
  BENELUX, CHANGES
2
2
 
3
- #### 0.5.10 (2010-03-15) ###############################
3
+ #### 0.5.11 (2010-03-15) ##############################
4
+
5
+ * FIXED: Don't reset packed_methods!
6
+
7
+ #### 0.5.10 (2010-03-15) ##############################
4
8
 
5
9
  * ADDED: Benelux.reset
6
10
 
data/benelux.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  @spec = Gem::Specification.new do |s|
2
2
  s.name = "benelux"
3
3
  s.rubyforge_project = 'benelux'
4
- s.version = "0.5.10"
4
+ s.version = "0.5.11"
5
5
  s.summary = "Benelux: A mad way to time Ruby codes"
6
6
  s.description = s.summary
7
7
  s.author = "Delano Mandelbaum"
data/lib/benelux.rb CHANGED
@@ -4,7 +4,7 @@ require 'thwait'
4
4
  require 'selectable'
5
5
 
6
6
  module Benelux
7
- VERSION = "0.5.10"
7
+ VERSION = "0.5.11"
8
8
  NOTSUPPORTED = [Class, Object, Kernel]
9
9
 
10
10
  class BeneluxError < RuntimeError; end
@@ -21,6 +21,7 @@ module Benelux
21
21
  require 'benelux/packer'
22
22
  require 'benelux/timeline'
23
23
 
24
+ @packed_methods = {}
24
25
  class << self
25
26
  attr_reader :packed_methods
26
27
  attr_reader :tracks
@@ -31,7 +32,6 @@ module Benelux
31
32
  end
32
33
 
33
34
  def Benelux.reset
34
- @packed_methods = {}
35
35
  @tracks = SelectableHash.new
36
36
  @timeline = Timeline.new
37
37
  @timeline_chunk = Timeline.new # See: update_global_timeline
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: benelux
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.10
4
+ version: 0.5.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Delano Mandelbaum