Sha256: 9ebdaa243294c8f44c8539d6d5e1d4af49f4cda6911775ecbab9256a61844bd3

Contents?: true

Size: 789 Bytes

Versions: 3

Compression:

Stored size: 789 Bytes

Contents

require 'English'

module Polyfill
  module V2_4
    module IO
      module Instance
        module Readlines
          module Method
            def readlines(*args)
              hash, others = args.partition { |arg| arg.is_a?(::Hash) }

              inputs = super(*others)

              if hash[0] && hash[0][:chomp]
                separator = others.find do |other|
                  other.respond_to?(:to_str)
                end || $INPUT_RECORD_SEPARATOR

                inputs.each { |input| input.chomp!(separator) }
              end

              inputs
            end
          end

          refine ::IO do
            include Method
          end

          def self.included(base)
            base.include Method
          end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
polyfill-0.6.0 lib/polyfill/v2_4/io/instance/readlines.rb
polyfill-0.5.0 lib/polyfill/v2_4/io/instance/readlines.rb
polyfill-0.4.0 lib/polyfill/v2_4/io/instance/readlines.rb