feedtools 0.2.12 → 0.2.13
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/CHANGELOG +2 -0
- data/lib/feed_tools.rb +2 -2
- data/rakefile +1 -1
- data/test/helper_test.rb +5 -0
- metadata +2 -2
data/CHANGELOG
CHANGED
data/lib/feed_tools.rb
CHANGED
@@ -32,7 +32,7 @@ FEED_TOOLS_ENV = ENV['FEED_TOOLS_ENV'] ||
|
|
32
32
|
ENV['RAILS_ENV'] ||
|
33
33
|
'production' # :nodoc:
|
34
34
|
|
35
|
-
FEED_TOOLS_VERSION = "0.2.
|
35
|
+
FEED_TOOLS_VERSION = "0.2.13"
|
36
36
|
|
37
37
|
$:.unshift(File.dirname(__FILE__))
|
38
38
|
$:.unshift(File.dirname(__FILE__) + "/feed_tools/vendor")
|
@@ -376,7 +376,7 @@ module FeedTools
|
|
376
376
|
end
|
377
377
|
normalized_url = normalize_url(url)
|
378
378
|
require 'uuidtools'
|
379
|
-
return UUID.sha1_create(normalized_url).to_uri_string
|
379
|
+
return UUID.sha1_create(UUID_URL_NAMESPACE, normalized_url).to_uri_string
|
380
380
|
end
|
381
381
|
|
382
382
|
# Returns true if the parameter appears to be a valid uri
|
data/rakefile
CHANGED
data/test/helper_test.rb
CHANGED
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
4
4
|
name: feedtools
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.2.
|
7
|
-
date: 2005-09-
|
6
|
+
version: 0.2.13
|
7
|
+
date: 2005-09-28 00:00:00 -04:00
|
8
8
|
summary: "Parsing, generation, and caching system for xml news feeds."
|
9
9
|
require_paths:
|
10
10
|
- lib
|