diff options
| author | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-07-08 06:51:21 +0000 |
|---|---|---|
| committer | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-07-08 06:51:21 +0000 |
| commit | 4a7ef3a11d0e202cf974d7fd3ac278ebce7d6b3b (patch) | |
| tree | bb56feb49bd92a25cff3dd76b9afe3bbc7c5d83b /lib | |
| parent | e4c0a98be43297b1fc09a43b4f546985bbf5d4fc (diff) | |
| download | ruby-4a7ef3a11d0e202cf974d7fd3ac278ebce7d6b3b.tar.gz ruby-4a7ef3a11d0e202cf974d7fd3ac278ebce7d6b3b.tar.xz ruby-4a7ef3a11d0e202cf974d7fd3ac278ebce7d6b3b.zip | |
* 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: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8734 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/rss/0.9.rb | 4 | ||||
| -rw-r--r-- | lib/rss/rss.rb | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/rss/0.9.rb b/lib/rss/0.9.rb index a47332261..3bbf67be0 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 diff --git a/lib/rss/rss.rb b/lib/rss/rss.rb index 9ad4f4aeb..e5f116ef4 100644 --- a/lib/rss/rss.rb +++ b/lib/rss/rss.rb @@ -66,7 +66,7 @@ require "rss/xml-stylesheet" module RSS - VERSION = "0.1.4" + VERSION = "0.1.5" URI = "http://purl.org/rss/1.0/" |
