diff options
author | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-11-02 11:58:03 +0000 |
---|---|---|
committer | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-11-02 11:58:03 +0000 |
commit | 79041dfc8d68fa9009aab2dea6bf8c0c95cba0fe (patch) | |
tree | 7b93ec75e73e26c517e7fcc0749e2d073019acf2 /lib/rss/content/1.0.rb | |
parent | a7f1c72e9067e347613a4219767f1ea7c0824dd1 (diff) |
* lib/rss/content.rb, lib/rss/content/, lib/rss/maker/content.rb,
test/rss/test_content.rb, test/rss/test_maker_content.rb,
test/rss/rss-testcase.rb (RSS::TestCase): supported
content:encoded with RSS 2.0.
Suggested by Sam Lown. Thanks.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13805 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rss/content/1.0.rb')
-rw-r--r-- | lib/rss/content/1.0.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/rss/content/1.0.rb b/lib/rss/content/1.0.rb new file mode 100644 index 0000000000..e7c0c19685 --- /dev/null +++ b/lib/rss/content/1.0.rb @@ -0,0 +1,10 @@ +require 'rss/1.0' +require 'rss/content' + +module RSS + RDF.install_ns(CONTENT_PREFIX, CONTENT_URI) + + class RDF + class Item; include ContentModel; end + end +end |