module FilepathList::ArrayMethods
Public Class Methods
define_array_method(name)
click to toggle source
@private
# File lib/filepath/filepathlist.rb, line 107 def self.define_array_method(name) define_method(name) do |*args, &block| return @entries.send(name, *args, &block) end end