Sha256: 149f72087f2fa754c245d15da21d198eeda27ae63e2f059e26268608331bb6c0
Contents?: true
Size: 1.5 KB
Versions: 8
Compression:
Stored size: 1.5 KB
Contents
module Ru class Array def initialize(array) @data = array.to_a end def each_line Ru::Iterator.new(self) end def files @data.map! do |line| Ru::File.new(line) end self end def format(format='l') @data.map! do |item| item.format(format) end self end def grep(pattern) if pattern.kind_of?(String) pattern = Regexp.new(pattern) end select! do |item| item.to_s =~ pattern end self end def map(method=nil, *args, &block) if method.nil? && !block_given? to_a.map elsif method.nil? array = to_a.map(&block) self.class.new(array) else array = to_a.map { |item| item.send(method, *args) } self.class.new(array) end end def select(*args, &block) delegate_to_array(:select, *args, &block) end def to_a @data end def to_ary to_a end def to_s to_a.join("\n") end def to_self self end def ==(other) self.to_a == other.to_a end private def method_missing(method, *args, &block) delegate_to_array(method, *args, &block) end def delegate_to_array(method, *args, &block) result = @data.send(method, *args, &block) if result.kind_of? Enumerator::Lazy Ru::Stream.new(result) elsif result.kind_of? ::Array self.class.new(result) else result end end end end
Version data entries
8 entries across 8 versions & 1 rubygems