Flowdock
yes_other_writer(name, disp_name=name) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rss/rss.rb, line 551
    def yes_other_writer(name, disp_name=name)
      module_eval(        def #{name}=(new_value)          if [true, false].include?(new_value)            new_value = new_value ? "yes" : "no"          end          @#{name} = new_value        end, __FILE__, __LINE__ + 1)
    end
Register or log in to add new notes.