benelux 0.5.10 → 0.5.11
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES.txt +5 -1
- data/benelux.gemspec +1 -1
- data/lib/benelux.rb +2 -2
- metadata +1 -1
data/CHANGES.txt
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
BENELUX, CHANGES
|
2
2
|
|
3
|
-
#### 0.5.
|
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
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.
|
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
|