coin 0.1.3 → 0.1.4
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/lib/coin/vault.rb +2 -3
- data/lib/coin/version.rb +1 -1
- metadata +1 -1
data/lib/coin/vault.rb
CHANGED
|
@@ -48,11 +48,10 @@ module Coin
|
|
|
48
48
|
protected
|
|
49
49
|
|
|
50
50
|
def initialize
|
|
51
|
+
super
|
|
51
52
|
@dict = {}
|
|
52
53
|
start_sweeper
|
|
53
|
-
|
|
54
|
-
# singleton class and constructor is protected
|
|
55
|
-
mon_initialize
|
|
54
|
+
self
|
|
56
55
|
end
|
|
57
56
|
|
|
58
57
|
def start_sweeper
|
data/lib/coin/version.rb
CHANGED