aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rss/1.0.rb
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-23 09:49:02 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-23 09:49:02 +0000
commit73cd292fcd50f301180c536461001df2f3f9c7e9 (patch)
tree7c43d8cf9eb336b45ed84608ff254beca7fdc9e4 /lib/rss/1.0.rb
parent4cfc20b20d70280c293927c9d4ccc008c4e00c8a (diff)
downloadruby-73cd292fcd50f301180c536461001df2f3f9c7e9.tar.gz
* lib/rss/: use #__send__ instead of #send.
* test/rss/: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9599 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rss/1.0.rb')
-rw-r--r--lib/rss/1.0.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/rss/1.0.rb b/lib/rss/1.0.rb
index 00d8c3abdb..6603d525d3 100644
--- a/lib/rss/1.0.rb
+++ b/lib/rss/1.0.rb
@@ -87,7 +87,7 @@ module RSS
rv = [
[::RSS::URI, "channel"],
[::RSS::URI, "image"],
- ].delete_if {|uri, name| send(name).nil?}
+ ].delete_if {|uri, name| __send__(name).nil?}
@item.each do |item|
rv << [::RSS::URI, "item"]
end
@@ -326,7 +326,7 @@ module RSS
[::RSS::URI, 'items'],
[::RSS::URI, 'textinput'],
].delete_if do |uri, name|
- send(name).nil?
+ __send__(name).nil?
end
end
@@ -532,7 +532,7 @@ module RSS
[::RSS::URI, 'url'],
[::RSS::URI, 'link'],
].delete_if do |uri, name|
- send(name).nil?
+ __send__(name).nil?
end
end
@@ -602,7 +602,7 @@ module RSS
[::RSS::URI, 'link'],
[::RSS::URI, 'description'],
].delete_if do |uri, name|
- send(name).nil?
+ __send__(name).nil?
end
end
@@ -679,7 +679,7 @@ module RSS
[::RSS::URI, 'name'],
[::RSS::URI, 'link'],
].delete_if do |uri, name|
- send(name).nil?
+ __send__(name).nil?
end
end