Flowdock
def_children_accessor(accessor_name, plural_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 578
    def def_children_accessor(accessor_name, plural_name)
      module_eval(      def #{plural_name}        @#{accessor_name}      end      def #{accessor_name}(*args)        if args.empty?          @#{accessor_name}.first        else          @#{accessor_name}[*args]        end      end      def #{accessor_name}=(*args)        receiver = self.class.name        warn("Warning:\#{caller.first.sub(/:in `.*'\z/, '')}: " \             "Don't use `\#{receiver}\##{accessor_name} = XXX'/" \             "`\#{receiver}\#set_#{accessor_name}(XXX)'. " \             "Those APIs are not sense of Ruby. " \             "Use `\#{receiver}\##{plural_name} << XXX' instead of them.")        if args.size == 1          @#{accessor_name}.push(args[0])        else          @#{accessor_name}.__send__("[]=", *args)        end      end      alias_method(:set_#{accessor_name}, :#{accessor_name}=), *get_file_and_line_from_caller(2))
    end
Register or log in to add new notes.