File: element_wrapper.rb

package info (click to toggle)
ruby-eim-xml 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 236 kB
  • sloc: ruby: 2,015; makefile: 5
file content (9 lines) | stat: -rw-r--r-- 146 bytes parent folder | download
1
2
3
4
5
6
7
8
9
module EimXML
  class Formatter
    class ElementWrapper
      def each(option, &)
        contents(**option).each(&)
      end
    end
  end
end