jsl-myzofeedtosis 0.0.2.2 → 0.0.2.3
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/myzofeedtosis/client.rb +1 -2
- data/myzofeedtosis.gemspec +1 -1
- metadata +1 -1
data/lib/myzofeedtosis/client.rb
CHANGED
@@ -146,8 +146,7 @@ module Myzofeedtosis
|
|
146
146
|
# This signature will be the MD5 of enough fields to have a reasonable
|
147
147
|
# probability of determining if the entry is unique or not.
|
148
148
|
def digest_for(entry)
|
149
|
-
MD5.hexdigest( [ entry.
|
150
|
-
entry.content ].join )
|
149
|
+
MD5.hexdigest( [ entry.title, entry.content ].join )
|
151
150
|
end
|
152
151
|
|
153
152
|
def parser_for_xml(xml)
|
data/myzofeedtosis.gemspec
CHANGED