Flowdock
def_other_element_without_accessor(name) public

No documentation

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

Hide source
# File lib/rss/maker/base.rb, line 147
        def def_other_element_without_accessor(name)
          add_need_initialize_variable(name)
          add_other_element(name)
          module_eval(            def setup_#{name}(feed, current)              if !@#{name}.nil? and current.respond_to?(:#{name}=)                current.#{name} = @#{name}              end            end, __FILE__, __LINE__ + 1)
        end
Register or log in to add new notes.