* lib/rss, test/rss: backported from trunk. (2005-11-16 - now)

* lib/rss/: use #__send__ instead of #send.
* test/rss/: ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10294 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kou 2006-06-17 00:49:38 +00:00
parent d41bea59c4
commit e85f8c7829
17 changed files with 111 additions and 99 deletions

View file

@ -91,7 +91,7 @@ module RSS
variables.each do |var|
setter = "#{var}="
if target.respond_to?(setter)
value = self.__send__(var)
value = __send__(var)
if value
target.__send__(setter, value)
set = true