soxer 0.9.11 → 0.9.12
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +4 -0
- data/lib/soxer/main.rb +1 -1
- data/soxer.gemspec +1 -1
- metadata +2 -2
data/CHANGES
CHANGED
data/lib/soxer/main.rb
CHANGED
@@ -59,7 +59,7 @@ module Sinatra
|
|
59
59
|
# A private method, that generates and adds a Universally Unique
|
60
60
|
# Identifier field to the data structure.
|
61
61
|
def add_id
|
62
|
-
mtime = File.mtime( @
|
62
|
+
mtime = File.mtime( @f )
|
63
63
|
File.open( @f, 'r+' ) do |f|
|
64
64
|
out = "uuid: #{UUID.new.generate}\n"
|
65
65
|
out << f.read; f.pos = 0
|
data/soxer.gemspec
CHANGED