Module: IOExtras::AbstractOutputStream

Includes:
FakeIO
Included in:
Zip::ZipOutputStream
Defined in:
lib/zip/ioextras.rb

Overview

Implements many of the output convenience methods of IO. relies on <<

Instance Method Summary collapse

Methods included from FakeIO

#kind_of?

Instance Method Details



118
119
120
# File 'lib/zip/ioextras.rb', line 118

def print(*params)
  self << params.to_s << $\.to_s
end

#printf(aFormatString, *params) ⇒ Object



122
123
124
# File 'lib/zip/ioextras.rb', line 122

def printf(aFormatString, *params)
  self << sprintf(aFormatString, *params)
end

#putc(anObject) ⇒ Object



126
127
128
129
130
131
132
133
# File 'lib/zip/ioextras.rb', line 126

def putc(anObject)
  self << case anObject
   when Fixnum then anObject.chr
   when String then anObject
   else raise TypeError, "putc: Only Fixnum and String supported"
   end
  anObject
end

#puts(*params) ⇒ Object



135
136
137
138
139
140
141
142
143
# File 'lib/zip/ioextras.rb', line 135

def puts(*params)
  params << "\n" if params.empty?
  params.flatten.each {
	|element|
	val = element.to_s
	self << val
	self << "\n" unless val[-1,1] == "\n"
  }
end

#write(data) ⇒ Object



112
113
114
115
# File 'lib/zip/ioextras.rb', line 112

def write(data)
  self << data
  data.to_s.length
end