summaryrefslogtreecommitdiff
path: root/lib/rss/0.9.rb
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-07-08 06:51:21 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-07-08 06:51:21 +0000
commitcff37c6dcc79e5f47f780946eee8a57fa76ac82d (patch)
tree34a8b444a5662013e3a78f7753ae7ac01295b3ae /lib/rss/0.9.rb
parentb402bdf203baba642a5bab9fb94b136f624e8902 (diff)
* lib/rss/rss.rb (RSS::VERSION): 0.1.4 -> 0.1.5.
* test/rss/test_version.rb (RSS::TestVersion#test_version): ditto. * lib/rss/0.9.rb (RSS::Rss::Channel::Item::Category): domain attribute of <category> is optional. Thanks to Chris Lee <clee@kde.org>. * test/rss/test_parser.rb (RSS::TestParser#test_category20): adjusted test case. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8734 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rss/0.9.rb')
-rw-r--r--lib/rss/0.9.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rss/0.9.rb b/lib/rss/0.9.rb
index a473322612..3bbf67be05 100644
--- a/lib/rss/0.9.rb
+++ b/lib/rss/0.9.rb
@@ -572,7 +572,7 @@ module RSS
include RSS09
[
- ["domain", nil, true]
+ ["domain", nil, false]
].each do |name, uri, required|
install_get_attribute(name, uri, required)
end
@@ -588,7 +588,7 @@ module RSS
private
def _attrs
[
- ["domain", true]
+ ["domain", false]
]
end