dynarex-daily 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/dynarex-daily.rb +5 -1
- metadata +1 -1
data/lib/dynarex-daily.rb
CHANGED
@@ -23,6 +23,10 @@ class DynarexDaily < Dynarex
|
|
23
23
|
create_file
|
24
24
|
end
|
25
25
|
end
|
26
|
+
|
27
|
+
def save()
|
28
|
+
super(@filename)
|
29
|
+
end
|
26
30
|
|
27
31
|
private
|
28
32
|
|
@@ -32,7 +36,7 @@ class DynarexDaily < Dynarex
|
|
32
36
|
|
33
37
|
initialize('entries[date]/entry(time, desc)')
|
34
38
|
summary[:date] = Time.now.to_s
|
35
|
-
save
|
39
|
+
self.save
|
36
40
|
end
|
37
41
|
|
38
42
|
def archive_file()
|