Method: Integer#of

Defined in:
lib/apache/fakerequest.rb

#ofObject



13
14
15
16
17
18
19
# File 'lib/apache/fakerequest.rb', line 13

def of
	accum = []
	self.times do |i|
		accum << yield(i)
	end
	accum
end